如何创建每个标签只有一个符号的散点图图例?
如何创建散点图图例而不每次都显示两个符号?我可以理解为什么当您通过线连接符号时您会想要这个,但对于纯粹的散点图,我在图例中想要的只是符号的一个示例。之前的 stackoverflow 帖子中的这个图显示了我的意思:
How can I create a scatter plot legend without two symbols showing up each time? I can understand why you'd want this when you're joining symbols by lines, but for a pure scatter plot, all I want in the legend is one example of the symbol. This plot from a previous stackoverflow post shows the kind of thing I mean:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
legend
命令中,您可以使用scatterpoints
选项:对于普通绘图,它是选项
numpoints
。在这里您可以找到有关图例关键字参数的更多信息: http:// /matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.legend
In the
legend
command you can use thescatterpoints
option:For a normal plot, it is the option
numpoints
.Here you can find more information about the keyword arguments for the legend: http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.legend