免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

如何在python中使用ggplot畫圖-創(chuàng)新互聯(lián)

如何在python中使用ggplot畫圖?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

創(chuàng)新互聯(lián)公司專注于秀嶼網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供秀嶼營銷型網(wǎng)站建設(shè),秀嶼網(wǎng)站制作、秀嶼網(wǎng)頁設(shè)計、秀嶼網(wǎng)站官網(wǎng)定制、成都小程序開發(fā)服務(wù),打造秀嶼網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供秀嶼網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

簡介:


ggplot類是在plotnine中的,能夠生成一個圖形。

安裝:

pip install pandas plotnine

csv文件加載到survs_df的數(shù)據(jù)框架:

ggplot(survs_df, aes(x='weight', y='hindfoot_length',
size = 'year')) + geom_point()

生成圖形步驟:

1、設(shè)置數(shù)據(jù)框

2、需要將數(shù)據(jù)框架轉(zhuǎn)換成位置、顏色、大小等

3、顯示實際圖形元素

實例代碼:

(ggplot(mtcars, aes(‘wt', ‘mpg', color='factor(cyl)'))
+ geom_point()
+ labs(title='Miles per gallon vs Weight', x='Weight', y='Miles per gallon')
+ guides(color=guide_legend(title='Number of Cylinders')) )

輸出效果:

如何在python中使用ggplot畫圖

知識點擴展:

繪制散點圖,geom_point()

讀取外部數(shù)據(jù)進行繪圖

>>> import pandas as pd
>>> from ggplot import *
>>> df=pd.read_table('C:\Users\lenovo\Desktop\mtcars.txt')
>>> df
··name type number volume size other
0 td T 96 3 20 c
1 sf F 87 5 65 c
2 cc F 79 9 80 d

如果讀取的數(shù)據(jù)沒有column可以添加

df.columns=['name','type','number','volume','size','other']
>>> p=ggplot(df, aes(x='number', y='volume', size='factor(size)', color='factor(other)'))+geom_point()
>>> print p

關(guān)于如何在python中使用ggplot畫圖問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。

網(wǎng)站名稱:如何在python中使用ggplot畫圖-創(chuàng)新互聯(lián)
文章地址:http://m.newbst.com/article20/dsojco.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站ChatGPT品牌網(wǎng)站制作網(wǎng)站營銷面包屑導(dǎo)航微信小程序

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)