matplotlib中的相对时间轴刻度(月和年)

时间:2019-05-27 13:06:26

标签: matplotlib axis-labels

np.random.seed(0)
months = range(0, 120)
y = np.random.normal(0, 60, 120)
plt.plot(x, y, '.');

打印出精美的图形:

result

但是,x轴上的值实际上是相对月份。我想将主要刻度设置为年,将次要刻度设置为月(从第1年的第1个月到第10年)。

如何在matplotlib中设置相对时间刻度?

0 个答案:

没有答案