_chart = (
    alt.Chart(table)
    .mark_bar()
    .encode(
        x=alt.X("A", type="quantitative", bin=True),
        y=alt.Y("count()", type="quantitative"),
    )
    .properties(width="container")
)
_chart