數據分析python應用到的ggplot


數據分析中應用到python中的ggplot庫,可以用來畫圖

數據之類的用優達學院中課程七中的數據為例

數據是:https://s3.amazonaws.com/content.udacity-data.com/courses/ud359/hr_year.csv

  1. 散點圖:
gp=pandas.read_csv(hr_year_csv)
gg=ggplot(gp,aes('yearID','HR'))+geom_point(color='red')+ggtitle(u'Total Hr by year')

  圖展示為

    2.折線圖

 

gp=pandas.read_csv(hr_year_csv)
gg=ggplot(gp,aes('yearID','HR'))+geom_line(color='red')+ggtitle(u'Total Hr by year')

  圖展示為:

    3. 散點+折線

 

gp=pandas.read_csv(hr_year_csv)
gg=ggplot(gp,aes('yearID','HR'))+geom_line(color='red')+geom_point(color='red')+ggtitle(u'Total Hr by year')

  圖展示為:

 

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM