亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Matplotlib的subplot和subplots怎么使用

發布時間:2022-02-25 16:42:36 來源:億速云 閱讀:161 作者:iii 欄目:開發技術

這篇文章主要介紹了Matplotlib的subplot和subplots怎么使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Matplotlib的subplot和subplots怎么使用文章都會有所收獲,下面我們一起來看看吧。

對比開始:

需求:畫出兩張子圖,在一行顯示,子圖中的內容一模一樣

subplot代碼:

ax1 = plt.subplot(1,2,1)
ax1.scatter(positive['X1'], positive['X2'], s=50, marker='x', label='Positive')
ax1.scatter(negative['X1'], negative['X2'], s=50, marker='o', label='Negative')
ax1.legend()#添加圖列就是右上角的點說明
ax2 = plt.subplot(1,2,2)
ax2.scatter(positive['X1'], positive['X2'], s=50, marker='x', label='Positive')
ax2.scatter(negative['X1'], negative['X2'], s=50, marker='o', label='Negative')
ax2.legend()#添加圖列就是右上角的點說明

subplots代碼

fig, ax = plt.subplots(figsize=(12,8),ncols=2,nrows=1)#該方法會返回畫圖對象和坐標對象ax,figsize是設置子圖長寬(1200,800)
ax[0].scatter(positive['X1'], positive['X2'], s=50, marker='x', label='Positive')
ax[0].scatter(negative['X1'], negative['X2'], s=50, marker='o', label='Negative')
ax[0].legend()#添加圖列就是右上角的點說明
ax[1].scatter(positive['X1'], positive['X2'], s=50, marker='x', label='Positive')
ax[1].scatter(negative['X1'], negative['X2'], s=50, marker='o', label='Negative')
ax[1].legend()#添加圖列就是右上角的點說明

對比結果:

可以看出來兩者都可以實現畫子圖功能,只不過subplots幫我們把畫板規劃好了,返回一個坐標數組對象,而subplot每次只能返回一個坐標對象,subplots可以直接指定畫板的大小。

關于“Matplotlib的subplot和subplots怎么使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Matplotlib的subplot和subplots怎么使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普安县| 抚松县| 余江县| 赤城县| 长垣县| 克什克腾旗| 平武县| 长兴县| 房产| 公安县| 富裕县| 塘沽区| 德昌县| 舒兰市| 玛曲县| 宜兴市| 河南省| 曲靖市| 玛纳斯县| 定南县| 华安县| 阳西县| 安陆市| 神农架林区| 察隅县| 大新县| 宁明县| 宣城市| 涞水县| 江口县| 昌乐县| 贵定县| 黄山市| 桑日县| 莲花县| 军事| 罗源县| 桂平市| 临夏市| 建宁县| 遵义市|