如何从matplotlib到图实现图?

时间:2019-06-14 10:22:22

标签: python graph plotly jupyter

我是python和plotly的新手。我正在尝试使用plotly使一个图形更具交互性,我设法做到了一些,但是其中一些对我来说是不可能的,因为我已经考虑了4天。

enter image description here “工具提示”

预先感谢

目的是在plotly中显示一个堆积的条。我的问题是,groupby中有2个项目,rr中有3个参数,我不知道该库是否真的有可能做到这一点。

主要问题是我不知道该如何按照matplotlib中的标准按图排序该特定图形。

rr是我的数据帧,所以当我执行.unstack时,我具有多个索引。

#matplotlib graph 

plt.figure()
rr[['Money', 'monthYear', 'Country']].groupby(['monthYear','Country' ]).size().unstack().plot(kind='bar', stacked=True)
plt.xlabel('monthYear')
plt.ylabel('RunRates count')
plt.title('by monthYear & Country') 

0 个答案:

没有答案