为了账号安全,请及时绑定邮箱和手机立即绑定

如何更改seaborn散点图中的专色边缘颜色?

如何更改seaborn散点图中的专色边缘颜色?

ibeautiful 2021-07-19 16:13:05
我使用 seaborn 创建了一个散点图:import seaborn as snssns.set(style="ticks", color_codes=True)        g=sns.scatterplot(x="length", y="coverage", data=df, hue = 'Products', edgecolors=None, alpha = 0.7)g.set(yscale="log")plt.xlabel("Length(bp)")plt.ylabel("Coverage")plt.legend(loc = 'lower right')plt.savefig('ATN_plot.png',dpi = 600)原始数据(部分):contig  length  coverage    pathway Products53  1230    2423    stigmatellin    Yes58  1195    885 curacin Yes65  1161    598 jamaicamide Yes68  1159    8001    jamaicamide Yes79  1113    1423    curacin Yes105 1042    1106    stigmatellin    Yes727 666 223 HSAF (heat stable antifungal factor)    Yes787 655 37  curacin Yes791 654 13  stigmatellin    Yes798 652 49  stigmatellin    Yes844 642 5774    jamaicamide Yes89  1090    13  No  No90  1089    10  No  No91  1086    26  No  No92  1080    16  No  No93  1079    10  No  No94  1079    13  No  No最后的情节是这样的:我不喜欢斑点的白色边缘。图像的左下部分聚集了最多的斑点,看起来太白了。我已经包含edgecolors=None在我的代码中,但它似乎不起作用。有谁知道如何去除边缘颜色或将其更改为其他颜色?
查看完整描述

3 回答

?
猛跑小猪

TA贡献1858条经验 获得超8个赞

替换edgecolors=Nonelinewidth=0

就像是:

g=sns.scatterplot(x="length", y="coverage", data=df, hue = 'Products', 
                  linewidth=0, alpha = 0.7)


查看完整回答
反对 回复 2021-07-28
?
大话西游666

TA贡献1817条经验 获得超14个赞

在 matplotlib 中,大多数参数都采用None“使用默认值”。而在这里您不想使用默认值,而是不想使用边缘颜色。这是通过"none".

sns.scatterplot(..., edgecolor="none")


查看完整回答
反对 回复 2021-07-28
?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

您可以通过传递 kwargs(关键字参数)来更改专色


kwargs  =   {'edgecolor':"r", # for edge color

             'linewidth':2.7, # line width of spot

             'linestyle':'--', # line style of spot

            }

sns.scatterplot(x = "tip", y = "total_bill", data = tips_df, hue = "sex", 

                size ="sex", sizes = (100, 300), palette = "nipy_spectral" ,**kwargs)

或者您可以直接将其作为参数传递,例如:


sns.scatterplot(x = "tip", y = "total_bill", data = tips_df, hue = "sex", 

                size ="sex", sizes = (100, 300), palette = "nipy_spectral",

                edgecolor='r',

                linewidth=2,

                linestyle='--',)

输出 >>>

//img1.sycdn.imooc.com//610109dc0001fd9209430534.jpg

我希望,我已经解开了你的疑惑。


查看完整回答
反对 回复 2021-07-28
  • 3 回答
  • 0 关注
  • 759 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信