你可以在使用 Python 的雨云图上让箱形图与半小提琴图重叠吗?
Posted
技术标签:
【中文标题】你可以在使用 Python 的雨云图上让箱形图与半小提琴图重叠吗?【英文标题】:Can you have a box plot overlap a half violin plot on a raincloud plot using Python? 【发布时间】:2021-07-26 07:44:51 【问题描述】:我使用以下代码创建了一个雨云图:
#Rainplot
dx = 'Time Point'; dy = 'Score'; ort = "v"; pal = "Set2"; sigma = .2;
f, ax = plt.subplots(figsize=(7, 5))
pt.RainCloud(x = dx, y = dy, data = df, palette = pal, bw = sigma,
width_viol = .9, ax= ax, orient = ort, move = .2)
plt.title("")
plt.ylabel('Score', fontsize = 20)
plt.xlabel('', fontsize = 20)
plt.grid(color = 'w')
if savefigs:
plt.savefig('/Users/zeidanlab/Desktop/gv/rainplots/figure_tsc.png', bbox_inches='tight')
Raincloud Plot
我想知道是否有办法让箱线图与分布 blob 重叠。
【问题讨论】:
【参考方案1】:这是一种将半小提琴图与箱线图和条形图相结合的方法。
一半小提琴是通过提取它们的边界框并使用它的一半夹住小提琴来创建的。
为了不重叠而移动了带状图的点。
from matplotlib import pyplot as plt
import seaborn as sns
import numpy as np
sns.set_style('white')
tips = sns.load_dataset('tips')
palette = sns.cubehelix_palette(start=.5, rot=-.5, dark=0.3, light=0.7)
ax = sns.violinplot(y="day", x="total_bill", data=tips,
palette=palette,
scale="width", inner=None)
xlim = ax.get_xlim()
ylim = ax.get_ylim()
for violin in ax.collections:
bbox = violin.get_paths()[0].get_extents()
x0, y0, width, height = bbox.bounds
violin.set_clip_path(plt.Rectangle((x0, y0), width, height / 2, transform=ax.transData))
sns.boxplot(y="day", x="total_bill", data=tips, saturation=1, showfliers=False,
width=0.3, boxprops='zorder': 3, 'facecolor': 'none', ax=ax)
old_len_collections = len(ax.collections)
sns.stripplot(y="day", x="total_bill", data=tips, color='dodgerblue', ax=ax)
for dots in ax.collections[old_len_collections:]:
dots.set_offsets(dots.get_offsets() + np.array([0, 0.12]))
ax.set_xlim(xlim)
ax.set_ylim(ylim)
plt.show()
这是另一个例子,在垂直方向。
from matplotlib import pyplot as plt
import seaborn as sns
import numpy as np
sns.set_style('white')
iris = sns.load_dataset('iris')
palette = 'Set2'
ax = sns.violinplot(x="species", y="sepal_length", data=iris, hue="species", dodge=False,
palette=palette,
scale="width", inner=None)
xlim = ax.get_xlim()
ylim = ax.get_ylim()
for violin in ax.collections:
bbox = violin.get_paths()[0].get_extents()
x0, y0, width, height = bbox.bounds
violin.set_clip_path(plt.Rectangle((x0, y0), width / 2, height, transform=ax.transData))
sns.boxplot(x="species", y="sepal_length", data=iris, saturation=1, showfliers=False,
width=0.3, boxprops='zorder': 3, 'facecolor': 'none', ax=ax)
old_len_collections = len(ax.collections)
sns.stripplot(x="species", y="sepal_length", data=iris, hue="species", palette=palette, dodge=False, ax=ax)
for dots in ax.collections[old_len_collections:]:
dots.set_offsets(dots.get_offsets() + np.array([0.12, 0]))
ax.set_xlim(xlim)
ax.set_ylim(ylim)
ax.legend_.remove()
plt.show()
【讨论】:
谢谢!这很有帮助以上是关于你可以在使用 Python 的雨云图上让箱形图与半小提琴图重叠吗?的主要内容,如果未能解决你的问题,请参考以下文章