将熊猫数据框绘制为堆积面积图

时间:2018-12-03 18:02:30

标签: python pandas plot

我有以下熊猫数据集:

   col1  col2                         col3
0  name1 2018-11-27 23:08:47.700000   3
1  name1 2018-11-27 23:08:47.500000   4
2  name1 2018-11-27 23:08:47.300000   1
3  name1 2018-11-27 23:08:47.600000   3
4  name2 2018-11-27 23:08:47.100000   3
5  name2 2018-11-27 23:08:47.400000   3
6  name2 2018-11-27 23:08:47.800000   2
7  name2 2018-11-27 23:08:47.200000   3

我想创建一个绘图图,其中x轴是时间戳(col2),y轴是数量(col3),我将能够通过名称(col1)区分不同的图-我在想“堆积面积图”的位置,每种颜色都会标记不同的名称

我尝试使用plotly / matplotlib / cufflinks,但是没有成功(我不是python开发人员)。最简单的方法是什么?

例如我尝试过:

df.iplot(asFigure=True,kind='scatter',filename='output') #  -- no result

df = df.cumsum();
plt.figure(); 
df.plot(); 
lt.legend(loc='best')
plt.savefig('plot.png') # recieved a result that i could not understand
  • 操作系统:ubuntu 14.04
  • python版本:2.7.12

0 个答案:

没有答案