学习网址:https://www.lanqiao.cn/courses/1283/learning?id=10760
(一)单变量可视化
1.直方图:关键词“柱”“高斯分布”
hist()
features = [‘Total day minutes’, ‘Total intl calls’]
df[features].hist(figsize=(10, 4)) #10和4表示图的宽和高
2.密度图(density plots)
plot():
df[features].plot(kind=‘density’, subplots=True, layout=(1