Skip to content

Commit

Permalink
Remove sns.despine (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelvallat authored Mar 2, 2024
1 parent 3cfb649 commit f4593c5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/pingouin/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ def plot_blandaltman(
# Labels
ax.set_ylabel(f"{xname} - {yname}")
ax.set_xlabel(xlabel)
sns.despine(ax=ax)
return ax


Expand Down Expand Up @@ -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


Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f4593c5

Please sign in to comment.