覆盖y轴刻度标签而不影响pyplot

时间:2015-06-01 08:05:54

标签: python matplotlib plot

我想手动覆盖y轴刻度标签而不影响原始绘图。 例如,如何在不影响原始绘图形状的情况下显示y轴刻度标签[1,10,100,1000,10000],即仍显示完美的二次曲线。

import numpy as np
import pylab as pl
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
pl.plot(x, y)
pl.title(’Plot of y vs. x’)
pl.xlabel(’x axis’)
pl.ylabel(’y axis’)
pl.show()

我尝试了以下操作但无法正常工作

newYlabel = ['1','10','100','1000','10000']
p1.set_yticklabels(newYlabel)

1 个答案:

答案 0 :(得分:2)

set_yticklabelsAxes实例的方法,并且不存在于pylab接口中。尝试改为

pl.gca().set_yticklabels(newYlabel)

gca这里代表获取当前轴

修改: 图片: enter image description here

用于获取它的脚本:

import numpy as np
import pylab as pl
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
pl.plot(x, y)
pl.title('Plot of y vs. x')
pl.xlabel('x axis')
pl.ylabel('y axis')
newYlabel = ['1','10','100','1000','10000']
pl.gca().set_yticklabels(newYlabel)
pl.show()

在Fedora 21上使用matplotlib 1.4.3和python 2.7.8。