分组后如何排列来自 seaborn swarmplot 和各自箱线图的点
how to arrange dots from seaborn swarmplot and respective boxplot, after grouping
有谁知道在各自的箱线图上放置分组群图的点的方法吗?
就像现在一样,分组导致点出现在两组的中线上(见附图)。
代码:
sns.set(rc={'figure.figsize':(15.7,8.27)})
ax = sns.boxplot(data=mice_20191203, x="group", y="engraft", showfliers = False, hue="status")
ax = sns.swarmplot(data=mice_20191203, x="group", y="engraft", color=".25", size=6)
ax.set_title(label='K562 cells in NSG mice', fontsize=20)
ax.set_xlabel(xlabel='injected cells', fontsize=16)
ax.set_ylabel(ylabel='human CD45 (%)', fontsize=16)
plt.xticks(rotation=30)
plt.show()
输出:
提前致谢!
除了使用hue=
外,您还必须在调用swarmplot
时使用dodge=True
。参见 the documentation for swarmplot。
有谁知道在各自的箱线图上放置分组群图的点的方法吗? 就像现在一样,分组导致点出现在两组的中线上(见附图)。
代码:
sns.set(rc={'figure.figsize':(15.7,8.27)})
ax = sns.boxplot(data=mice_20191203, x="group", y="engraft", showfliers = False, hue="status")
ax = sns.swarmplot(data=mice_20191203, x="group", y="engraft", color=".25", size=6)
ax.set_title(label='K562 cells in NSG mice', fontsize=20)
ax.set_xlabel(xlabel='injected cells', fontsize=16)
ax.set_ylabel(ylabel='human CD45 (%)', fontsize=16)
plt.xticks(rotation=30)
plt.show()
输出:
提前致谢!
除了使用hue=
外,您还必须在调用swarmplot
时使用dodge=True
。参见 the documentation for swarmplot。