gpt4 book ai didi

python - Seaborn FacetGrid 堆叠条形图

转载 作者:行者123 更新时间:2023-12-01 07:52:12 27 4
gpt4 key购买 nike

是否可以使用seaborn创建堆叠条形图facetgrid?

g = sns.FacetGrid(data, col="city", col_order=cities, col_wrap=3, height=5)
g = g.map(plt.plot, x="date", y="value", hue='time_bin', stacked=True, marker=".")

不幸的是不起作用。

最佳答案

从我从你的代码中可以猜测,它可以用plt来完成:

fig, axes = plt.subplots(5,3,figsize=(12,20))
axes = axes.flatten()

for city,ax in zip(cities,axes):
df = data[data.city==city].groupby(['date','time_bin']).value.count()
df.unstack().plot.bar(ax=ax, stacked=True)

输出:

enter image description here

关于python - Seaborn FacetGrid 堆叠条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56152279/

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