我想知道我是如何使用matplotlib
例如像這樣繪製並排圖像並排繪製圖像的一面:使用matplotlib
我得到的最接近是這樣的:
f, axarr = plt.subplots(2,2)
axarr[0,0] = plt.imshow(image_datas[0])
axarr[0,1] = plt.imshow(image_datas[1])
axarr[1,0] = plt.imshow(image_datas[2])
axarr[1,1] = plt.imshow(image_datas[3])
:
這是通過使用由此代碼生成
但我似乎無法得到其他圖像顯示。我在想,必須有更好的方法來做到這一點,因爲我會想象試圖管理索引將是一個痛苦。我已經瀏覽了documentation,雖然我有一種感覺,我可能會看錯了。任何人都可以爲我提供一個例子,或者指引我走向正確的方向嗎?
也許這是有幫助的:Python和Matplotlib,繪製不規則網格](http://stackoverflow.com/questions/41644180/python-matplotlib-plotting-irregular-grid/41644458#41644458) – Lucas
看看[示例說明使用'plt.subplots()'](http:///matplotlib.org/examples/pylab_examples/subplots_demo.html)。 – Goyo