Changing the size of seaborn pairplot markers

后端 未结 2 939
别那么骄傲
别那么骄傲 2021-01-04 07:46

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 d

相关标签:
2条回答
  • 2021-01-04 07:54

    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}.

    0 讨论(0)
  • 2021-01-04 08:04

    Adding this should solve the issue - just worked for me

    plot_kws={"s": 3}
    
    0 讨论(0)
提交回复
热议问题