gcamargo
gcamargo

Reputation: 3961

Altair boxplot interactive

Why interactive plots does not work in Altair for boxplots?

import altair as alt
from vega_datasets import data

source = data.population.url

alt.Chart(source).mark_boxplot().encode(
    x='age:O',
    y='people:Q'
).interactive()

Upvotes: 1

Views: 546

Answers (1)

joelostblom
joelostblom

Reputation: 48919

Because Vega-Lite does not support zooming and panning for ordinal scales yet, follow https://github.com/vega/vega-lite/issues/4369 for updates.

Upvotes: 2

Related Questions