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

标签 python matplotlib seaborn catplot

我试图在 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/

相关文章:

python - 将字节字符串读取为 xls 文件

python - Django:如何使用参数重定向

python - 使同步 Flask 异步 - Flask 实例

python-2.7 - 如何检查是否/使用了哪个 matplotlibrc

python - seaborn jointplot 按密度颜色

python - 使用 win32inet.WinHttpGetProxyForUrl 的正确方法是什么

python - PyQt5 和 Matplotlib 1.4.2 - 安装一个会破坏另一个

python - 线图不显示轴中的所有日期

python - 绘制连接两个 swarmplots 的各个数据点的彩色线

python - 带状图中的颜色标记由与色调不同的变量表示