Altair Limit Number Of Bars
Suppose that I have a dataframe like this one label counts 4 4 8 5 5 7 6 6 6 7 7 5 0 0 4 1 1 3 2 2
Solution 1:
You can do this following the Top K Items example from the Altair documentation. Here it is applied to your data:
import altair as alt
import pandas as pd
from io import StringIO
df = pd.read_csv(StringIO("""
label counts
4 4 8
5 5 7
6 6 6
7 7 5
0 0 4
1 1 3
2 2 2
3 3 1
"""), delim_whitespace=True)
alt.Chart(df).transform_window(
rank='rank(counts)',
sort=[alt.SortField('counts', order='descending')]
).transform_filter(
alt.datum.rank <= 3
).mark_bar().encode(
x='counts:Q',
y='label:O'
)
Post a Comment for "Altair Limit Number Of Bars"