我无法在下面绘制多索引数据文件,
因为我出于某种原因无法使用m04hour.inde
x范围值。
但是,这个绘图命令工作正常:
m04hour['consumption (kWh)'].plot(figsize=(12,2))
但是这个没有:
fig,ax = plt.subplots(figsize=(8,4))
ax.plot(m04hour.index, m04hour['consumption(kWh)'],c='red',lw=1,label='queens')
因为" m04hour.index
"正在返回错误:
ValueError: setting an array element with a sequence.
那么问题是如何引用m04hour.index
值来设置绘制x轴?