Please see the graph below and the example codes. In the 'note' option in my codes, I have not kept any space but the graph is being produced with large space in the note "Overall mean±SD" (underlined red thick line). Is there any way of getting rid of the space that's being produced by the leading quote?
Code:
sysuse auto, clear
qui su mpg
loc m : di %12.0f r(mean)
loc sd : di %12.0f r(sd)
#delimit ;
twoway (scatter mpg weight) ||
(lfit mpg weight),
yline(`m', lpatt(--))
note("Overall mean±SD:`m'(±`sd')")
;
#delimit cr
0 Response to Get rid of the space after the leading quote?
Post a Comment