Changing The Size Of Seaborn Pairplot Markers
I'm trying to plot a seaborn.pairplot with small dots like this one: But I get one with the markers much bigger and I can't find how to change their size in the documentation. My
Solution 1:
Adding this should solve the issue - just worked for me
plot_kws={"s": 3}
Solution 2:
Just to clarify the above answer in that plot_kws = {"s":3} is a dictionary with size ("s") set to the value of 3. You can increase or decrease the value as you like. For example you can do plot_kws = {"s":1}.
Post a Comment for "Changing The Size Of Seaborn Pairplot Markers"