我希望看到一个数字上面的填充轮廓图。下面的代码片段使用了matplotlib imshow方法,该方法导致图形被轮廓覆盖 - 我希望反过来看到它
import matplotlib.pyplot as plt
ax = F.add_subplot(1, 1, 1)
plt.contourf(X, Y, Z, levels,
linewidths=0.5,
fontsize=9,
cmap=cm.gist_rainbow,
norm = normation,
zorder=1
#alpha=0.5
)
im = plt.imread('background.png')
ax.imshow(im, extent=[0,4000,5500,0], zorder=10)