Announcement

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

  • Graph Dot Labeling

    I recently created a dot chart using "graph dot" in Stata. Is there a way to alter the size of the categorical labels on the vertical axis? Typically I would use ylabel(, labelsize(small)) but sice dot plots treat the axes a bit differently I can't seem to figure out the right command. Thanks in advance!

  • #2
    This has been solved!

    Comment


    • #3
      For graph, you have a categorical axis.

      Code:
      sysuse nlsw88, clear
      graph dot wage, over(occ, sort(1) label(labsize(large)))

      Comment

      Working...
      X