使用pyplot的直方图的x轴标签放错了位置

时间:2019-10-31 07:22:30

标签: python-3.x histogram

在给定的图中,我无法正确放置x轴标签。他们转移到一侧。我希望标签位于直方图中每个条的中心。

plt.figure(figsize=(10,10))
xvals=range(20)
plt.hist([positive[~pd.isnull(positive.RELIGION)]['RELIGION'],negative[~pd.isnull(negative.RELIGION)]['RELIGION']], bins=10, alpha=0.9, normed=False, label=['Alive','Dead'])
plt.title('Relationship between religion and mortality')
plt.xlabel('Admission type')
plt.ylabel('Ratio')
plt.legend(loc='upper center')
plt.xticks(xvals,rotation=90)

图片托管在here

0 个答案:

没有答案