這篇文章主要介紹python seaborn模塊怎么樣安裝及使用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供汕尾網(wǎng)站建設(shè)、汕尾做網(wǎng)站、汕尾網(wǎng)站設(shè)計(jì)、汕尾網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、汕尾企業(yè)網(wǎng)站模板建站服務(wù),十余年汕尾做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
首先是進(jìn)行安裝seaborn模塊
pip install seaborn
上文已經(jīng)告知大家seaborn模塊是做圖形的,那我們直接以一個(gè)圖形為切入點(diǎn),學(xué)習(xí)了解:
圖示如下:
實(shí)現(xiàn)代碼步驟:
直方圖
import matplotlib.pyplot as plt import seaborn as sns %matplotlib inline titanic=sns.load_dataset('titanic') #sample方法 titanic.sample(10)
豐富信息
# 通過'bins'參數(shù)設(shè)定數(shù)據(jù)片段的數(shù)量
sns.distplot(age1,bins=30,kde=False)
條形圖
import seaborn as sns import matplotlib.pyplot as plt %matplotlib inline titanic=sns.load_dataset('titanic') #'survived'為y軸,傳入'titanic'數(shù)據(jù) sns.barplot(x='class',y='survived',data=titanic)
以上是python seaborn模塊怎么樣安裝及使用的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!