如何创建一个子图,其中背景是完全创建的,没有灰色边框,带有来自file.png的png图像
我试过了:
import matplotlib.pyplot as plt
im = plt.imread('map.gif')
implot = plt.imshow(im,aspect='auto',origin='lower')
fig0=implot.figure.tight_layout(pad=0.5)
implot.axes.set_axis_off()
fig1=implot.figure
ax1=fig1.add_subplot(2,2,1)
ax1.plot(range(10))
ax2=fig1.add_subplot(2,2,2)
ax2.plot(range(9,-1,-1))
plt.show()
我无法让图像跨越整个图形窗口
感谢
伊兰