I have a simple line plot on Seaborn -
ax = sns.lineplot(data=df2, x="screen", y="bmi")
And I want to know how to label the coordinates of certain points like https://i.stack.imgur.com/Imlzg.jpg. I have tried a few methods but they have not worked. Thanks a lot for helping.
Similar questions asked wanted a way to label a third variable on their graph, but I just want to label the y-values at certain points. No other questions solved this problem.