Seaborn 点图美学

Con*_*ino 5 python matplotlib seaborn

我正在尝试调整seaborn pointplot中点和线的大小

在其他绘图类型(例如lmplot)中,我们可以通过 options 来做到这一点scatter_kws=None, line_kws=None;但是它看起来不像 pointplot 有那些。

无论如何传递这些选项似乎不起作用;例如

g = sns.FacetGrid(long_df, col=options.group, sharey=options.sharey, sharex=options.sharex, margin_titles=True, col_order = order)
g = g.map(sns.pointplot,options.time,'Abundance','OTU', palette='deep', scatter_kws={'alpha':0.3}).
Run Code Online (Sandbox Code Playgroud)

此外,有没有办法单独调整误差线的美观度?