如何创建连接的 Altair 折线图,如下面数据框所示的示例?

问题描述 投票:0回答:1

我有以下数据框:

 Click here to see a picture of the dataframe

我想创建一个连接的 Altair 图表,如下所示:

Concatenated Altair chart example

到目前为止我已经有了这个,但这不起作用:

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
)

为此创建图表的最佳方法是什么

python visualization linechart altair stacked-chart
1个回答
0
投票

这应该有效:

alt.Chart(prob_df).mark_line().encode(
    x='Year',
    y='Prob'
).properties(
    width=150,
    height=150
).facet(
    row='Key1',
    column='Key2'
)
© www.soinside.com 2019 - 2024. All rights reserved.