Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • how to show data of certain points on the plot?

    Hi! I made two plots with two variables.

    How to show the point data in the plots? for example, 79.1%, 72.5%, etc.
    Thank you in advance!


    Click image for larger version

Name:	plots with value of some point.png
Views:	1
Size:	19.8 KB
ID:	1596436



  • #2
    The following should point you in the right direction

    Code:
    sysuse auto
    sort weight
    twoway line length weight in 1/20||scatter length weight in 1/20,mcolor(black%0) mlabel(weight)

    Comment

    Working...
    X