标签: python pandas matplotlib graph
我看起来像这样的情节似乎受阻,并没有显示月份
这是我的代码
fname = pd.read_csv('airlines.csv') fname.plot(kind='bar', x= "Month", y = "Minutes Delayed.Weather", title = "Minutes Delayed Due to Weather 2003-2016", legend=False)
我该如何修复它?