我用seaborn创建了一个散点图:import seaborn as sns
sns.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 Products
53 1230 2423 stigmatellin Yes
58 1195 885 curacin Yes
65 1161 598 jamaicamide Yes
68 1159 8001 jamaicamide Yes
79 1113 1423 curacin Yes
105 1042 1106 stigmatellin Yes
727 666 223 HSAF (heat stable antifungal factor) Yes
787 655 37 curacin Yes
791 654 13 stigmatellin Yes
798 652 49 stigmatellin Yes
844 642 5774 jamaicamide Yes
89 1090 13 No No
90 1089 10 No No
91 1086 26 No No
92 1080 16 No No
93 1079 10 No No
94 1079 13 No No
最后的情节是这样的:
我不喜欢斑点的白边。图像的左下半部分,其中大部分斑点是累积的,看起来太白了。我的代码中已经包含了“edgecolors=None”,但它似乎不起作用。有人知道如何去除边缘颜色或将其更改为其他颜色吗?
非常感谢!
使用seaborn创建散点图时,想要去除或改变点的边缘颜色。代码中已尝试设置`edgecolors=None`,但未能生效。问题集中在如何有效地去除散点图中点的白色边缘,特别是在密集区域,白色边缘导致视觉效果过强。寻求解决方案。
701

被折叠的 条评论
为什么被折叠?



