使用绘图创建多个箱形图

问题描述 投票:1回答:1

我正在尝试使用plotly复制在matplotlib中制作的以下箱形图:

enter image description here

我的数据在从excel文件导入的非常简单的数据框中,如下所示:

enter image description here

如您所见,我想在x轴和y轴上使用从0到10的不同条件,并且对于每种条件都有不同的箱形图,其均值,SD等。但是,当我尝试以下代码,得到非常奇怪的输出:

import plotly.express as px
conditions = df1.keys() #all conditions, df1 being my DataFrame
conditions=list(conditions)
fig = px.box(df1, x = conditions) 
fig.show()

输出:enter image description here任何人都知道我该怎么做才能得到类似的图,就像我用matplotlib但用plotly得到的图?

python python-3.x plotly
1个回答
0
投票

您可以使用plotly.expressplotly_graph_objects

© www.soinside.com 2019 - 2024. All rights reserved.