I have a lot of coefficients which have long labels, so for layout purposes it would be good to be able to add line breaks. It is complicated a bit by the fact that I am using aseq and swapnames, because I am visualizing the effect of 1 independent variable on many different dependent variables.
With the autodata, this is what I want to acheive: That the label on the left side "Miles per gallon" has a line break, after 'Miles', i.e., it appears as:
Miles
per gallon
Thanks!
With the autodata, this is what I want to acheive: That the label on the left side "Miles per gallon" has a line break, after 'Miles', i.e., it appears as:
Miles
per gallon
Code:
sysuse auto, clear
reg price trunk
estimates store price
reg mpg trunk
estimates store mpg
reg headroom trunk
estimates store headroom
coefplot ///
(price, aseq(Price)) ///
(mpg, aseq(Miles per gallon)) ///
(headroom, aseq(Headroom (in.))) ///
, keep(*trunk) swapnames legend(off)

Comment