在Matplotlib中更改刻度线增量

时间:2018-07-12 13:16:44

标签: python pandas matplotlib

我有一个直方图,详细说明了每年的电影发行数量。如何更改我的x轴,使其以5为增量显示年份(例如1950、1955、1960、1965 ...)?

    df_year = df[['release_year']]
    df_year.groupby('release_year')['release_year'].count()

    plt.hist(df_year, alpha=.5)
    plt.xlabel('ReleaseCount Year', fontsize=14)
    plt.ylabel('Years', fontsize=14)
    plt.show()

我所拥有的: enter image description here

我想要什么: enter image description here

0 个答案:

没有答案