本文介绍了如何更改Seaborn.pairplot中的散点图透明度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
sns.pairplot(data_new, kind="scatter", hue="location", plot_kws=dict(s=80, edgecolor="white", linewidth=2.5))
大家好,有人可以告诉我如何按照我上面的代码更改散布透明度(alpha应该为0.3)吗?
Hey folks, can someone tell me how to change the scatter transparency(alpha should be 0.3) following my code above?
非常感谢!
推荐答案
您已经在使用 plot_kws
将参数传递给绘图函数.因此, alpha
只是可以添加到此字典中的另一个参数:
You are already using plot_kws
to pass in parameters to the plotting function. Therefore, alpha
is simply another parameter you can add to this dictionary:
sns.pairplot(data_new, kind="scatter", hue="location",
plot_kws=dict(s=80, edgecolor="white", linewidth=2.5, alpha=0.3))
这篇关于如何更改Seaborn.pairplot中的散点图透明度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!