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

How do I create a concatenated altair line chart like the example shown with the below dataframe?

我有以下数据框:

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
)

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

这应该有效:

alt.Chart(prob_df).mark_line().encode(
    x='Year',
    y='Prob'
).properties(
    width=150,
    height=150
).facet(
    row='Key1',
    column='Key2'
)

如果没有,请根据 https://whosebug.com/help/how-to-ask 包含您的数据样本,以便更容易地进一步帮助您。