Search code examples
pythonseaborn

Changing the size of seaborn pairplot markers


I'm trying to plot a seaborn.pairplot with small dots like this one: enter image description here

But I get one with the markers much bigger and I can't find how to change their size in the documentation. My pairplot looks like this:

enter image description here

The code I'm using to plot is:

sns.pairplot(df, diag_kind='kde')
sns.plt.show()

Solution

  • Adding this should solve the issue - just worked for me

    plot_kws={"s": 3}