标签: matplotlib axis-labels
np.random.seed(0) months = range(0, 120) y = np.random.normal(0, 60, 120) plt.plot(x, y, '.');
打印出精美的图形:
但是,x轴上的值实际上是相对月份。我想将主要刻度设置为年,将次要刻度设置为月(从第1年的第1个月到第10年)。
如何在matplotlib中设置相对时间刻度?