将文本标签添加到一个点子集的情节散点图中
我有一个plotly.express.scatter
绘制了数千点。我想添加文本标签,但仅用于离群值(例如,远离趋势线)。
我该如何处理绘图?
我猜我需要列出要标记的点的列表,然后以某种方式将其传递给绘制(update_layout
?)。我对做到这一点的好方法感兴趣。
任何帮助都赞赏。
I have a plotly.express.scatter
plot with thousands of points. I'd like to add text labels, but only for outliers (eg, far away from a trendline).
How do I do this with plotly?
I'm guessing I need to make a list of points I want labeled and then pass this somehow to plotly (update_layout
?). I'm interested in a good way to do this.
Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有一个正确的想法:您需要具有离群值的坐标,并使用Plotly's 文本注释将文本标签添加到这些点。我不确定您要如何确定异常值,但是以下是使用
提示
数据集的示例。You have the right idea: you'll want to have the coordinates of your outliers, and use Plotly's text annotations to add text labels to these points. I am not sure how you want to determine outliers, but the following is an example using the
tips
dataset.