箱型图
- 01
import pandas as pd
import seaborn as sns
titanic=pd.read_csv('C:\\work\\titanic.csv')
titanic.head()
点击查看详情
- 02
# age列
sns.boxplot(y=titanic["age"])
点击查看详情
- 03
# x轴指定class分类
sns.boxplot(data=titanic,y="age",x="class")
点击查看详情
- 04
# 添加条件,hue
sns.boxplot(data=titanic, x="class", y="age", hue="alive")
点击查看详情
- 05
# 宽度
sns.boxplot(data=titanic, x="deck", y="age", width=.5)
点击查看详情
- 06
# 颜色 color="red"
# 线宽度
sns.boxplot(data=titanic, x="deck", y="age", color="0.8", linewidth=.75)