Announcement

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

  • Alignment of axis labels in coefplot

    Dear Stata users,

    I have this odd problem where the y axis labels are set on axis y line and not to the left of it in coefplot. So if I run:

    Code:
    clear
    sysuse auto
    eststo: reg price length
    coefplot
    I get the following
    Screenshot 2023-10-16 at 21.48.12.png


    How do I get the y axis labels to be to the left of the axis line? I tried ylab(,labgap(size)) without any luck.
    Thanks
    Last edited by Hans Sievertsen; 16 Oct 2023, 14:51. Reason: added tags

  • #2
    https://www.statalist.org/forums/for...hs-in-stata-17 should point you to the source of the problem, which is the font you are using. coefplot (SSC) has no fault here.

    Comment


    • #3
      Thanks Andrew Musau ! You are right. Resetting to the default with

      Code:
      graph set window fontface default
      fixed the issue! Thank you!

      Comment

      Working...
      X