Announcement

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

  • Graph options

    Click image for larger version

Name:	Statalist.png
Views:	1
Size:	16.0 KB
ID:	1498719

    Dear Stata users,

    I am wondering is it possible to control the size of the second label (numbers) in scale?



    Thank you
    Last edited by Buyadaa Oyunchimeg; 17 May 2019, 02:24.

  • #2
    No data example here.

    This may help. The idea is to mix the usual axis labels and minor axis labels. Note that you may need to fiddle with tick length and colour. Don't make your text too small. A Tip on ticks (and labels) is forthcoming in Stata Journal 19(3), in a few months' time.

    Code:
    sysuse auto, clear
    set scheme s1color 
    scatter mpg rep78, ms(Oh) jitter(1) yla(, ang(h)) xla(1/5) ///
    xmla(1 "appalling" 3 "adequate" 5 "amazing", tlength(*8) tlc(none)) xsc(titlegap(*5))
    Click image for larger version

Name:	labels.png
Views:	1
Size:	27.0 KB
ID:	1498724

    Comment


    • #3
      Beautiful! Thank you so much Mr.Cox.

      Comment

      Working...
      X