loglog在python中反转x轴

时间:2013-11-09 11:47:27

标签: python numpy matplotlib

我想制作一个与下面例子有相似轴的图。我知道我可以使用loglog情节。但是在这个例子中,当你走得更远时,步长(x轴)会减小。

我怎么能在python中做这个(使用matplotlib)

enter image description here

1 个答案:

答案 0 :(得分:1)

可能是您正在寻找的invert_xaxis调用。如下:

fig = plt.figure()
ax = fig.add_axes()
ax.invert_xaxis()

链接:http://matplotlib.org/api/axes_api.html#matplotlib.axes.Axes