Plotly 分类 y 轴上的散点图间隙

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

我在 reference Plotly Python 中找不到我需要的信息。 这是我的代码:

fig_scatter = px.scatter(df_lv, x='frame', y='username', color='label_name', symbol='label_name',
                         title=f'{task_option}')# size='count_tag',
fig_scatter.update_traces(marker_size=10)
fig_scatter.update_layout(scattermode="group",scattergap=0.75,xaxis_range=[0, tasks_labels_df.frame.max()])

我的输出:

我希望 y 轴上两个分类变量之间的差距更小。因此,我可以交互地在 plot 中减少 y 轴变量之间的空间,但如何在默认情况下创建它? 我想要的情节:

python plotly visualization
© www.soinside.com 2019 - 2024. All rights reserved.