L:python的Pandas模块:实例练习(泰坦尼克号数据集分析,电影票房统计,股票基本面统计)
实例练习泰坦尼克号数据集分析使用Seaborn库中包含的titanic数据集进行一些数据统计。Seaborn是一个图形库,Anaconda已包含此库。数据集参见:https://github.com/mwaskom/seaborn-dataimportseabornassnstit=sns.load_dataset('titanic')#读取数据集,返回DataFrametit.shapeOut: