答案 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()
输出:
答案 1 :(得分:1)
请参见plotly.express
中的strip
。