- 一些 seaborn 地块将接受宽数据框
sns.pointplot(data=df, x='X_Axis', y='col_2'),但不接受 sns.pointplot(data=df, x='X_Axis', y=['col_2', 'col_3']),因此最好重塑 DataFrame。
- 使用
pandas.DataFrame.melt 将DataFrame 从宽改成长。
- 在
python 3.8.12、pandas 1.3.4、matplotlib 3.4.3、seaborn 0.11.2中测试
示例数据帧
import pandas as pd
import seaborn as sns
df = pd.DataFrame({'X_Axis':[1,3,5,7,10,20],
'col_2':[.4,.5,.4,.5,.5,.4],
'col_3':[.7,.8,.9,.4,.2,.3],
'col_4':[.1,.3,.5,.7,.1,.0],
'col_5':[.5,.3,.6,.9,.2,.4]})
# display(df)
X_Axis col_2 col_3 col_4 col_5
0 1 0.4 0.7 0.1 0.5
1 3 0.5 0.8 0.3 0.3
2 5 0.4 0.9 0.5 0.6
3 7 0.5 0.4 0.7 0.9
4 10 0.5 0.2 0.1 0.2
5 20 0.4 0.3 0.0 0.4
# convert to long (tidy) form
dfm = df.melt('X_Axis', var_name='cols', value_name='vals')
# display(dfm.head())
X_Axis cols vals
0 1 col_2 0.4
1 3 col_2 0.5
2 5 col_2 0.4
3 7 col_2 0.5
4 10 col_2 0.5
当前的绘图方法
catplot: 人物级别
使用seaborn.catplot 和kind=(例如kind='point' 重现FactorPlot 默认值):
g = sns.catplot(x="X_Axis", y="vals", hue='cols', data=dfm, kind='point')
sns.pointplot(x="X_Axis", y="vals", hue='cols', data=dfm)
原创
factorplot: 更名为catplot v0.9.0(2018 年 7 月)
新版本的 seaborn 收到警告:
factorplot 函数已重命名为 catplot。原始名称将在未来版本中删除。请更新您的代码。请注意,factorplot ('point') 中的默认 kind 已更改为 catplot 中的 'strip'。
g = sns.factorplot(x="X_Axis", y="vals", hue='cols', data=dfm)
# using pd.melt instead of pd.DataFrame.melt for pandas < 0.20.0
# dfm = pd.melt(df, 'X_Axis', var_name='cols', value_name='vals')
# g = sns.factorplot(x="X_Axis", y="vals", hue='cols', data=dfm)