gpt4 book ai didi

python - Altair Hconcat - 是否可以在同一 HConCat 中为图表配置不同的轴?

转载 作者:行者123 更新时间:2023-12-02 19:37:43 26 4
gpt4 key购买 nike

我正在使用 streamlit 构建一个仪表板,我想依次展示 2 个图表,使用 altair 效果很好,hconcat 函数允许我做到这一点。

import altair as alt

df1 = pd.DataFrame({'metric':list('ab'),
'value':[8,10]})

df2 = pd.DataFrame({'metric':list('xyz'),
'value':[5,9,7]})

chart_1 = (alt.Chart(df1).mark_bar().encode(x='metric', y='value'))
chart_2 = (alt.Chart(df2).mark_bar().encode(x='metric', y='value'))

(chart_1 | chart_2)

Output

我希望一个图表的 Y 轴位于左侧,而另一个图表的 Y 轴位于右侧,但尚未找到解决方案。配置可以在图表级别进行:

chart_2 = (alt.Chart(df2).mark_bar().encode(x='metric', y='value')).configure_axisY(orient='right')

但是使用 hconcat 函数呈现时会抛出异常:

ValueError: Objects with "config" attribute cannot be used within HConcatChart. Consider defining the config attribute in the HConcatChart object instead.

有办法做到这一点吗?

提前致谢

最佳答案

config 属性只能在图表的顶层定义,因为它本质上充当适用于最终图表所有组件的主题。

如果你想为每个子图设置不同的轴属性,全局配置不是执行此操作的地方;您可以在每个子图的轴属性中执行此操作。例如:

chart_1 = alt.Chart(df1).mark_bar().encode(
x='metric',
y=alt.Y('value', axis=alt.Axis(orient='left'))
)
chart_2 = alt.Chart(df2).mark_bar().encode(
x='metric',
y=alt.Y('value', axis=alt.Axis(orient='right'))
)

(chart_1 | chart_2)

enter image description here

关于python - Altair Hconcat - 是否可以在同一 HConCat 中为图表配置不同的轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60798307/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com