Hi. I recently installed Stata on a Mac OS (12.2.1 Monterey), and for some reason my figures look a bit weird. Most obviously, the axis labels are strangely aligned with the ticks, though there's something uncanny about the rest of the figure too. What's going on?
Example code:
Example code:
Code:
clear set seed 1 set obs 20 generate x = _n generate y = _n + rnormal() scatter x y graph export "x_y.png", width(2000)