我正在尝试绘制时间序列。
我想做一个绘图,并在X轴上打印日期
这是我的代码:
DfGrouped=df.groupby(['cust_country_code_iso']).sum()
NewData= df[df.cust_country_code_iso=='BE']
NewData=NewData.drop(['cust_country_code_iso','id_pn_partnumber'], axis=1).sum()
print(NewData)
NewData.plot(figsize=(15, 6))
plt.show()
01/10/2016 38187.0
01/11/2016 26234.0
01/12/2016 29475.0
01/01/2017 31546.0
01/02/2017 29894.0
01/03/2017 41395.0
01/04/2017 27027.0
01/05/2017 34402.0
01/06/2017 55475.0
01/07/2017 17359.0
01/08/2017 22267.0
01/09/2017 32740.0
01/10/2017 30815.0
dtype: float64
我看不到第二列(Y轴)的标签,但是我看不到X轴中日期的标签