python如何画出多个独立的图片_python实现在一个画布上画多个子图
matplotlib 是可以組合許多的小圖, 放在一張大圖里面顯示的. 使用到的方法叫作 subplot.
均勻畫圖
使用import導(dǎo)入matplotlib.pyplot模塊, 并簡寫成plt. 使用plt.figure創(chuàng)建一個(gè)圖像窗口.
1
2
3
import matplotlib.pyplot as plt
plt.figure()
使用plt.subplot來創(chuàng)建小圖. plt.subplot(2,2,1)表示將整個(gè)圖像窗口分為2行2列, 當(dāng)前位置為1. 使用plt.plot([0,1],[0,1])在第1個(gè)位置創(chuàng)建一個(gè)小圖.
1
2
plt.subplot(2,2,1)
plt.plot([0,1],[0,1])
plt.subplot(2,2,2)表示將整個(gè)圖像窗口分為2行2列, 當(dāng)前位置為2. 使用plt.plot([0,1],[0,2])在第2個(gè)位置創(chuàng)建一個(gè)小圖.
1
2
plt.subplot(2,2,2)
plt.plot([0,1],[0,2])
plt.subplot(2,2,3)表示將整個(gè)圖像窗口分為2行2列,當(dāng)前位置為3. plt.subplot(2,2,3)可以簡寫成plt.subplot(223), matplotlib同樣可以識別. 使用plt.plot([0,1],[0,3])在第3個(gè)位置創(chuàng)建一個(gè)小圖.
1
2
plt.subplot(223)
plt.plot([0,1],[0,3])
plt.subplot(224)表示將整個(gè)圖像窗口分為2行2列, 當(dāng)前位置為4. 使用plt.plot([0,1],[0,4])在第4個(gè)位置創(chuàng)建一個(gè)小圖.
1
2
3
4
plt.subplot(224)
plt.plot([0,1],[0,4])
plt.show()# 展示
不均勻畫圖
如果希望展示的小圖的大小不相同, 應(yīng)該怎么做呢? 以上面的4個(gè)小圖為例, 如果把第1個(gè)小圖放到第一行, 而剩下的3個(gè)小圖都放到第二行.
使用plt.subplot(2,1,1)將整個(gè)圖像窗口分為2行1列, 當(dāng)前位置為1. 使用plt.plot([0,1],[0,1])在第1個(gè)位置創(chuàng)建一個(gè)小圖.
1
2
plt.subplot(2,1,1)
plt.plot([0,1],[0,1])
使用plt.subplot(2,3,4)將整個(gè)圖像窗口分為2行3列, 當(dāng)前位置為4. 使用plt.plot([0,1],[0,2])在第4個(gè)位置創(chuàng)建一個(gè)小圖.
1
2
plt.subplot(2,3,4)
plt.plot([0,1],[0,2])
這里需要解釋一下為什么第4個(gè)位置放第2個(gè)小圖. 上一步中使用plt.subplot(2,1,1)將整個(gè)圖像窗口分為2行1列, 第1個(gè)小圖占用了第1個(gè)位置, 也就是整個(gè)第1行. 這一步中使用plt.subplot(2,3,4)將整個(gè)圖像窗口分為2行3列, 于是整個(gè)圖像窗口的第1行就變成了3列, 也就是成了3個(gè)位置, 于是第2行的第1個(gè)位置是整個(gè)圖像窗口的第4個(gè)位置.
使用plt.subplot(235)將整個(gè)圖像窗口分為2行3列,當(dāng)前位置為5. 使用plt.plot([0,1],[0,3])在第5個(gè)位置創(chuàng)建一個(gè)小圖. 同上, 再創(chuàng)建plt.subplot(236).
1
2
3
4
5
6
7
plt.subplot(235)
plt.plot([0,1],[0,3])
plt.subplot(236)
plt.plot([0,1],[0,4])
plt.show()# 展示
完整代碼
1
2
3
4
5
6
7
8
9
10
11
12
13
14
plt.figure()
plt.subplot(2,1,1)
plt.plot([0,1],[0,1])
plt.subplot(2,3,4)
plt.plot([0,1],[0,2])
plt.subplot(235)
plt.plot([0,1],[0,3])
plt.subplot(236)
plt.plot([0,1],[0,4])
plt.show()# 展示
結(jié)果如下
以上這篇python實(shí)現(xiàn)在一個(gè)畫布上畫多個(gè)子圖就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持服務(wù)器之家。
原文鏈接:https://blog.csdn.net/qq_26449287/article/details/103022636
總結(jié)
以上是生活随笔為你收集整理的python如何画出多个独立的图片_python实现在一个画布上画多个子图的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 上海大学计算机组成原理实验13,上海大学
- 下一篇: python对平面设计帮助_平面设计工作