我正在尝试使用下面的代码绘制按房屋价格划分的平均犯罪率,并且除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')
我整天尝试了所有尝试来解决此问题,但是它不起作用。