
Python
hz_kevin88
这个作者很懒,什么都没留下…
展开
-
Python 数据可视化——Matplotlib
原始数据展示(这张表记录了某个公园的火灾情况,X和Y代表的是坐标位置,area代表的是烧毁面积)import pandas forest_fires = pandas.read_csv('forest_fires.csv') print(forest_fires.head(5)) 在使用matplotlib库的时候,都会默认地缩写为pltimport matplotlib.pyplot as ...原创 2018-05-12 16:55:31 · 559 阅读 · 0 评论 -
Python数据可视化(2)_pandas
本文来源:https://www.dataquest.io/mission/132/data-visualization-and-exploration本文数据来源https://github.com/fivethirtyeight/data/blob/master/college-majors/recent-grads.csv本文主要介绍了一下如何简单的探查数据之间的关系 原始数据展现(这是一份...原创 2018-05-12 16:56:38 · 289 阅读 · 0 评论 -
Python数据可视化(3)_seaborn
本文内容来源:https://www.dataquest.io/mission/133/creating-compelling-visualizations本文数据来源:http://www.cdc.gov/nchs/nsfg.htm本文摘要:介绍一个以matplotlib为底层,更容易定制化作图的库Seaborn Seaborn其实是在matplotlib的基础上进行了更高级的API封装,从而使...原创 2018-05-12 16:57:29 · 356 阅读 · 0 评论