如何在seaborn boxplot中的相同子组之间创建间距?

Eri*_*ric 6 python boxplot seaborn

我目前有一个 seaborn 箱线图,如下所示: 当前箱线图

x 轴上的每个分组(“色调”)都相互接触。

这个箱线图的代码是这样的:

bp_all = sns.boxplot(x='X_Values', y='Y_values', hue='Groups123', data=mydataframe, width=0.8, showfliers=False, linewidth=4.5, palette='coolwarm')
Run Code Online (Sandbox Code Playgroud)

有什么方法可以在 3 个组之间创建一个小空间,使它们不会相互接触?

Eri*_*ric 7

我找到了另一个用户发布的解决方案。此功能用于根据您选择的因素调整您创建的图形中所有对象的宽度

from matplotlib.patches import PathPatch

def adjust_box_widths(g, fac):
    """
    Adjust the withs of a seaborn-generated boxplot.
    """

    # iterating through Axes instances
    for ax in g.axes:

        # iterating through axes artists:
        for c in ax.get_children():

            # searching for PathPatches
            if isinstance(c, PathPatch):
                # getting current width of box:
                p = c.get_path()
                verts = p.vertices
                verts_sub = verts[:-1]
                xmin = np.min(verts_sub[:, 0])
                xmax = np.max(verts_sub[:, 0])
                xmid = 0.5*(xmin+xmax)
                xhalf = 0.5*(xmax - xmin)

                # setting new width of box
                xmin_new = xmid-fac*xhalf
                xmax_new = xmid+fac*xhalf
                verts_sub[verts_sub[:, 0] == xmin, 0] = xmin_new
                verts_sub[verts_sub[:, 0] == xmax, 0] = xmax_new

                # setting new width of median line
                for l in ax.lines:
                    if np.all(l.get_xdata() == [xmin, xmax]):
                        l.set_xdata([xmin_new, xmax_new])
Run Code Online (Sandbox Code Playgroud)

例如:

fig = plt.figure(figsize=(15, 13))
bp = sns.boxplot(#insert data and everything)
adjust_box_widths(fig, 0.9)
Run Code Online (Sandbox Code Playgroud)

示例图

  • 需要更改什么才能使其适用于水平箱线图? (3认同)