我有以下数据帧:
单击此处查看数据帧的图片
我想创建一个连接的牵牛星图,如下所示:
级联牛郎图示例
到目前为止,我有这个,但它不起作用:
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'
)
如果没有,请根据https://stackoverflow.com/help/how-to-ask,这样更容易进一步帮助您。