Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 pandas DataFrame,我可以制作一个性别年龄群体图(图片有两列男性和女性)。还有糖尿病年龄群体图(两列是和否)
我怎样才能制作一个有四列的群体图:
男&是男&没有女&是女&没有
您可以使用以下hue参数sbn.swarmplot:
hue
sbn.swarmplot
g = sbn.swarmplot(x="Gender", y="Age", hue="Diabetes", data=data, dodge=True, size=10)
这给出了: