gpt4 book ai didi

python - 我如何在 Seaborn 的同一个 catplot 上显示种类 ="swarm"和种类 ="point"?

转载 作者:行者123 更新时间:2023-12-04 07:33:33 25 4
gpt4 key购买 nike

我试图在 Seaborn 的同一个 catplot 上显示均值和错误 (kind="point") 以及单个数据点 (kind="swarm")。

我有以下代码:

sns.catplot(x="Variable_A", y="Dependent_Variable", col="Variable_B", data=LRP_df, kind="swarm", color = "black")

sns.catplot(x="Variable_A", y="Dependent_Variable", col="Variable_B", data=LRP_df, kind="point", color = "red")

sns.despine()

分别生成图:

result of calling catplot

如何使两个图位于同一轴上?

谢谢!

最佳答案

使用面网格,您可以通过使用 map_dataframe() 指定每个人来叠加每个人。 official reference 中的示例已被修改。数据基于样本数据。

import seaborn as sns

sns.set_theme(style="ticks")
exercise = sns.load_dataset("exercise")

g = sns.FacetGrid(exercise, col="kind")
g.map_dataframe(sns.stripplot, x="time", y="pulse", color="black")
g.map_dataframe(sns.pointplot, x="time", y="pulse", color="red")
g.set_axis_labels("time", "pulse")

enter image description here

关于python - 我如何在 Seaborn 的同一个 catplot 上显示种类 ="swarm"和种类 ="point"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67837930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com