0

我在 pylab 中使用 contourf 进行绘图,并且绘图效果很好。然而,x 轴标签值在 y 方向上从 0 到 100,在 x 方向上从 0 到 1000,因为我在 x 方向上有 1000 个数据点,在 y 方向上有 100 个数据点。但我希望将 x 轴标记为从 -4 到 4,将 y 轴标记为从 0 到 1000。我只想更改标签。

    pylab.contourf(-pac[:,100,:])  #pac is a 3D data distribution
    pylab.colorbar()
    savefig("PAC Concentration.png")
    pylab.close()

提前感谢

4

1 回答 1

4

使用extent关键字参数。

pylab.contourf(-pac[:,100,:], extent=[-4, 4, 0, 1000])  #pac is a 3D data distribution
pylab.colorbar()
savefig("PAC Concentration.png")
pylab.close()
于 2013-01-21T09:38:31.097 回答