Announcement

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

  • how can I highlight just one comment in Twoway Graph


    Dear members, I have a data information by country, from which I made a twoway Graph, however, using "marker properties" I would like to highlight just one country. How can I do this?

  • #2
    The word "comment" doesn't seem to match your question. You give no data example, but you can try this in your Stata

    Code:
    sysuse auto, clear
    scatter mpg weight , ms(Oh) || scatter mpg weight if make == "Subaru", mla(make) legend(off)
    to get an idea of technique. For one more systematic discussion, see https://www.stata-journal.com/sjpdf....iclenum=gr0023 (the site seems to be down for maintenance as I write).

    Comment

    Working...
    X