From f4593c5ae898410aa5b46f639a0a44e2979c3a68 Mon Sep 17 00:00:00 2001 From: Raphael Vallat Date: Sat, 2 Mar 2024 13:05:58 +0100 Subject: [PATCH] Remove sns.despine (#410) --- src/pingouin/plotting.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pingouin/plotting.py b/src/pingouin/plotting.py index 955ac02f..b82ba844 100644 --- a/src/pingouin/plotting.py +++ b/src/pingouin/plotting.py @@ -190,7 +190,6 @@ def plot_blandaltman( # Labels ax.set_ylabel(f"{xname} - {yname}") ax.set_xlabel(xlabel) - sns.despine(ax=ax) return ax @@ -652,8 +651,6 @@ def plot_paired( ax.set_xlabel(xlabel) ax.set_ylabel(ylabel) - # Despine and trim - sns.despine(trim=True, ax=ax) return ax @@ -888,7 +885,6 @@ def adjacent_values(vals, q1, q3): ax2.set_xlabel("X quantiles", size=15) ax2.set_ylabel("Y - X quantiles \n differences (a.u.)", size=10) - sns.despine() plt.tight_layout() return fig