将数据汇总到不同年份的某一点并将其绘制在图形中

时间:2019-04-20 09:57:00

标签: pandas data-science

我想总结指向不同年份的数据。 因此,我想绘制一个具有不同年份的图表,并从一个指定的属性中总结出一个图表,让我们来回顾一下2011年-2015年的硬币

所以我选择熊猫作为数据框 我用过:

Summerize the data point (way 1)
testn = test.groupby(by=[test.index.year,test.index.month]).sum()
print(testn['SalesDateTime'])
print (type(testn))

这给我一个错误。 错误告诉我没有属性年份或月份?

    enter code here

    Summerize the data point (way 1)
    testn = test.groupby(by=[test.index.year,test.index.month]).sum()
    print(testn['SalesDateTime'])
    #print (type(testn))

    Summerize the data point (way 2)
    nieuw = test.groupby(by=[test.index.month, test.index.year])
    print(nieuw)

    testn.plot("SalesDateTime","Coins",)
    plt.show(testn)

1 个答案:

答案 0 :(得分:0)

我认为没有DatetimeIndex,所以需要to_datetime

test.index = pd.to_datetime(test.index)
testn = test.groupby(by=[test.index.year,test.index.month]).sum()

或者:

testn = (test.groupby(by=[test.index.year.rename('year'),
                          test.index.month.rename('month')]).sum().reset_index())