我正在尝试绘制一个简单的时间序列,其中年份为 x 轴上的单位。不幸的是,pyplot 似乎认为这些数字应该以科学格式显示。我已经看到有关 Stack Overflow 的建议,可以通过以下方式更改此行为:
plt.gca().ticklabel_format(style='plain', axis='x')
甚至只是
plt.ticklabel_format(style='plain', axis='x')
应该是要走的路。令我惊讶的是,我注意到这在我的系统上完全没有任何作用。它没有任何效果,但也不会触发任何错误。这是怎么回事?我知道我可以设置标签字符串,但显然这不是它应该如何工作的。由于我找不到有关此错误的任何提及,因此我想检查这是否是一个常见问题。
我在 Linux 上运行 python 2.7。
编辑:
这基本上是我正在使用的代码。除了这些值实际上是从文本文件中读出的。
labels = ['1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998']
years = [1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998]
values = [1.4, 2.3, 4.2, 3.2, 1.2, 3.6, 9.8, 10.2, 6.1, 3.2]
plt.plot(years, values, label='Random Data')
plt.autoscale(tight=True)
plt.title('Plot of some random data')
plt.legend(loc=0)
plt.ylabel('[some unit]')
plt.xlabel('year')
plt.ticklabel_format(style='plain', axis='x') # this should work but doesn't
plt.xticks(range(1989, 1989 + len(years)), labels) # this works but is cumbersome
plt.show()
plt.savefig('beispiel.jpg')