使 sns.swarmplot 相对于 x 轴上的两个分类变量

Make sns.swarmplot with respect to two categorical variables in x-axis

我有一个 pandas DataFrame,我可以制作一个性别年龄群图(图片有两列男性和女性)。还有糖尿病年龄群图(两列是和否)

我如何制作一个包含四列的群图:

男&是男&不是女&是女&否

您可以使用 sbn.swarmplothue 参数:

g = sbn.swarmplot(x="Gender", y="Age", hue="Diabetes", data=data, dodge=True, size=10)

这给出: