18
如何反轉y_axis? Z是np.array.Thank你在matplotlib中翻轉座標軸grafic
Z=TempLake
X,Y=np.meshgrid(range(Z.shape[0]+1),range(Z.shape[1]+1))
im = plt.pcolormesh(X,Y,Z.transpose(), cmap='hot')
plt.colorbar(im, orientation='horizontal')
plt.show()
我有這樣的:
我需要這樣的:
Curtsey of [this](http://old.nabble.com/How-to-reverse-the-direction-of-an-axis--td15170464.html)後,您可以使用'ax.set_ylim (ax.get_ylim()[:: - 1])'或['ax.invert_yaxis()'](http://matplotlib.sourceforge.net/api/axes_api.html#matplotlib.axes.Axes.invert_yaxis),其中'ax'是一個'matplotlib.axes.Axes'對象。 – Chris 2012-08-02 13:14:44
[Matplotlib coord。 sys origin to left left](http://stackoverflow.com/questions/1349230/matplotlib-coord-sys-origin-to-top-left) – Chris 2012-08-02 13:14:58