如何绘制所有年份从1月到12月的日图?

时间:2018-09-12 09:00:01

标签: python pandas matplotlib

我的2年数据帧具有每日时间戳记,并从96个位置进行测量。我想获取从jan到Dec的特定位置的日历日图,如下图所示。

enter image description here

我的当前代码如下:

max_day = df.groupby(pd.Grouper(key='time',freq='D')).max() 
axs2.plot(max_day.index[:].values,max_day.iloc[:,0])

以上代码给出了以下图表,其中从2016年到2017年连续显示96个地方的数据。我想要得到上图所示的内容。 enter image description here

0 个答案:

没有答案