猿问

如何在一张图上绘制多列的分布

  • 我想在一张图中创建跨性别属性分布的可视化。有没有办法在 Python 中做到这一点?

  • 我用过px.boxplot,但我一次只能做一栏。

df.head():


 gender amb1_1 intel1_1 attr1_1 sinc1_1 shar1_1

0   0   15.0    20.0    15.0    20.0    15.0

1   0   15.0    20.0    15.0    20.0    15.0

2   0   15.0    20.0    15.0    20.0    15.0

3   0   15.0    20.0    15.0    20.0    15.0

4   0   15.0    20.0    15.0    20.0    15.0


茅侃侃
浏览 123回答 0
0回答

慕姐4208626

将数据帧转换为长格式.stack()绘制和sns.boxplot使用hue='gender'Seaborn是一个基于matplotlib.import pandas as pdimport matplotlib.pyplot as pltimport seaborn as sns# datadata = {'gender': [0, 0, 0, 1, 1],        'amb1_1': [15.0, 16.0, 17.0, 18.0, 19.0],        'intel1_1': [25.0, 26.0, 27.0, 28.0, 29.0],        'attr1_1': [15.0, 16.0, 17.0, 18.0, 19.0],        'sinc1_1': [25.0, 26.0, 27.0, 28.0, 29.0],        'shar1_1': [15.0, 16.0, 17.0, 18.0, 19.0]}# dataframedf = pd.DataFrame(data)# convert to longdfl = df.set_index('gender').stack().reset_index().rename(columns={'level_1': 'groups', 0: 'values'})# plotp = sns.boxplot(x='groups', y='values', data=dfl, hue='gender')plt.show()和plotly数据帧需要很长,就像dfl上一个例子使用选择计算四分位数的算法中的示例代码import plotly.express as pxfrom plotly.offline import plotfig = px.box(dfl, x="groups", y="values", color="gender")plot(fig)
随时随地看视频慕课网APP

相关分类

Python
我要回答