Announcement

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

  • combining graphs with letters

    Dear Stata team,
    I have a question please regarding graphs.
    I need to combine three graphs and denote a letter for each graph to indicate that in the figure explanation
    is there a way to include those letters A, B , C to the graphs as numbering them?
    thank you very much
    best regards
    Umama

  • #2
    Something like this:
    Code:
    clear*
    sysuse auto, clear
    
    graph twoway scatter price mpg, title("A", ring(10) position(11)) ///
        subtitle("My Scatterplot")
    Choose different value of -ring()- and -position()- to locate the letter A to your taste.

    Comment


    • #3
      thank you very much Clyde, I will try this!

      best regards
      Omamah

      Comment

      Working...
      X