python-data-science-intro
2020-02-18 23:54:06 0 举报
AI智能生成
python-data-science-intro
作者其他创作
大纲/内容
3.Numpy
5.Play with Data through Pandas
9.summay
Data Sicence intro
6.Data Visualization
6.Matplotlib
30.Basic Plot Introduction
plt.plot(series对象,label = 'xx')
plt.title()
plt.xlabel()plt.ylabel()
plt.legend()
%matplotlib inline
plt.show()
32. Histogram and KDE Plot
plt.hist(series对象)
series对象.plot(kind = 'kde')
33. Series Plot
34. DataFrame Plot
df对象.plot(kind='bar')
7.Seaborn
38. Bar and Heatmap Plot
关于DF去做
用seaborn做
35.Histogram and KDE Plot
# 默认直方图和密度图sns.distplot(series对象)
39. Plotting Style Configuration
sns.set_style('darkgrid')
sns.set_context('poster')
恢复默认设置sns.set()
4.Pandas
8.Project Exericse
42. Stock Market Analysis - Getting Data
43. Stock Market Analysis - History Analysis
44. Stock Market Analysis - Relationship
相干性 df.pct_change()
seaborn 散点图
两两比较
多个同时比较
0 条评论
回复 删除
下一页