在Python中,将数据点名称写在数据点的正上方。

问题描述 投票:0回答:1

我有一个数据集,我用python的plotly进行了绘制。

enter image description here

模型的名称以图例的形式显示在右侧,这让人有点难以理解。有没有什么方法可以把模型名称写在图上的颜色圈上方,就像下面显示的那样?mathplotlib中类似的东西也会帮助我。enter image description here

python graph plotly
1个回答
0
投票

你需要在你的散点语句中添加标签。

import plotly.express as px
#df data
fig = px.scatter(df, x="latency", y="AP", text="type", size_max=60)
fig.update_traces(textposition='top center')
© www.soinside.com 2019 - 2024. All rights reserved.