Announcement

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

  • Insert "Greater than or Equal to" symbol as x axis tick labels

    Hello,

    I am trying ti insert greater than or equal to symbol as x axis label. i.e., x axis is marked at 0,1,2,3,4. But I want to insert the ≥4 instead of 4 as the tick label. How can I do it?

    I have read the article "Stata tip 6: Inserting awkward characters in the plot" & "http://www.stata.com/bookstore/pdf/g_text.pdf" but these I am not sure how I can add special charecters to the
    labels? Please let me know.

    I thank you very much for your time

    Thank you again for your time.
    Anwar

  • #2
    See help graph text

    Code:
    sysuse auto,clear
    scatter price mpg, xlabel(10 20  30  40 "40{&ge} ")

    Comment


    • #3
      Thanks a lot for your time
      Anwar

      Comment

      Working...
      X