分类索引上缺少熊猫的X轴标签

时间:2018-08-12 22:27:51

标签: python pandas

我正在尝试使用下面的代码绘制按房屋价格划分的平均犯罪率,并且除x轴刻度线外的所有其他功能均未标记。

df2 = df.groupby(pd.cut(df.home_prices, bins=10, include_lowest=True, right=False)).mean()
df2.drop(['home_prices', 'total_major_crime_incidents', 'social_housing_units'], axis=1, inplace=True)
ax = df2.plot(kind='line')
ax.set(title='Average Crime Rate by House Prices', xlabel='House Prices', ylabel='Crime Rate')

这将产生下面的图片,但是您可以看到,缺少x轴刻度。 Average Crime Rate by House Prices

df2数据帧如下所示: enter image description here

我整天尝试了所有尝试来解决此问题,但是它不起作用。

0 个答案:

没有答案