每日五行代码 20171213
第一天,恰缝国难日,不忘历史,走好前路。
计划从可视化开始,标题后面再更新。
# 使用pandas 标准绘图功能,此处用的数据集是kaggle 泰坦数据,取的前10行.
plt.style.available #查看可用样式
plt.style.use('seaborn') #选择样式
%matplotlib inline #这个是为了显示图用的.
top_10.plot(kind = 'barh',y = "Fare" ,x = "Name")
top_10_mean = df.groupby('Sex')['Survived','PassengerId'].agg({'Survived':'sum','PassengerId':'count'}).reset_index()
top_10_mean.plot(kind = 'bar',x = "Sex") #df直接作图,多列图,可选堆叠。
附Pandas plot 官方教程
作图的基础还是数据处理,加入pandas 库练习 20171214
网友评论