您好,登錄后才能下訂單哦!
這篇文章主要介紹python seaborn模塊怎么樣安裝及使用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
首先是進(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)
豐富信息
# 通過(guò)'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)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。