Plotly / plotly.express中的群图

时间:2020-04-29 02:57:36

标签: python plotly

您可以使用'jitter'参数进行Plotly.Scatter,但这似乎是随机散布的。请注意,这些在Seaborn中的间隔有多整齐?可以在Plotly中复制吗?

Seaborn 'Swarm' Plots

2 个答案:

答案 0 :(得分:1)

据我所知,没有,但是points="all"函数有一个选项px.box,该选项会将群体图添加到框的左侧。以下示例取from the plotly documentation page about boxplot

import plotly.express as px
df = px.data.tips()
fig = px.box(df, x="time", y="total_bill", points="all")
fig.show()

输出:

enter image description here

答案 1 :(得分:1)

请参见plotly.express中的strip

enter image description here