在matplotlib图中更改偏移的文本

时间:2013-04-14 18:27:35

标签: python python-2.7 matplotlib

我想在matplotlib中更改偏移的文本。我做了一个情节:

x = linspace(0, 11, 1000)
plot(x,2000*(1-exp(-x))+randn(1000))
axis((10.3, 11, 1996.9, 2002.9))

enter image description here

比偏移量以+ 1.996e + 3的形式写入。在我看来太难了。我想将其更改为+1996,或者根本禁用偏移量。 我尝试了如下:

t = gca().yaxis.get_offset_text()
t.set_text('+1996')

它没有奏效。什么是正确的方法?或者我可以设置偏移的格式吗?或者如何禁用偏移?

0 个答案:

没有答案