Seaborn RegPlot部分透视(alpha)

时间:2015-10-08 03:01:56

标签: python seaborn

当使用seaborn barplot时,我可以指定一个alpha,它使条形半透明。但是,当我用Seaborn regplot尝试这个时,我得到一个错误,说这是一个意外的争论。

我在线阅读文档并没有找到太多,有人能指出我正确的方向......

2 个答案:

答案 0 :(得分:51)

使用scatter_kws参数。例如:

ax = sb.regplot(x="total_bill", 
                y="tip", 
                data=tips, 
                scatter_kws={'alpha':0.3})

答案 1 :(得分:0)

这有助于设置所有字体sns.set(font_scale=1.5)

的大小