我有以下数据框:
我想创建一个连接的 Altair 图表,如下所示:
到目前为止我已经有了这个,但这不起作用:
alt.Chart(prob_df).alt.Chart(prob_df).mark_line().encode(
x='Key2',
y='Year'
).properties(
width=150,
height=150
).facet(
facet='Key1',
columns=3
)
为此创建图表的最佳方法是什么
这应该有效:
alt.Chart(prob_df).mark_line().encode(
x='Year',
y='Prob'
).properties(
width=150,
height=150
).facet(
row='Key1',
column='Key2'
)