作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用seaborn练习数据探索,最近遇到一个问题:如何将alpha(透明度)传入seaborn.jointplot
(到散点图部分,而不是直方图)?
更广泛地说,我还想知道:
joint_kws
的一般功能是什么? , marginal_kws
和 annot_kws
(即我如何使用/将 pyplot 参数传递给这些参数?)? kwargs
有什么区别?范围? 最佳答案
只需添加 alpha=0.5
给您的 sns.jointplot
调用可能会出现以下错误:
TypeError: regplot() got an unexpected keyword argument 'alpha'
alpha
设置成
scatter_kws
,然后进入
joint_kws
,像这样:
sns.jointplot(x, y, data, kind='reg',joint_kws = {'scatter_kws':dict(alpha=0.5)})
关于parameters - 如何将 alpha(透明度)传递给 seaborn.jointplot?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54703781/
我是一名优秀的程序员,十分优秀!