In the example below, I would like to change the model names from "m1 and m2" to something else. I've tried using eqrename and eqlabels with no luck.
HTML Code:
drop _all clear all sysuse auto reg price mpg weight eststo m1 reg price mpg weight length eststo m2 #delimit ; coefplot m1 || m2 , keep(mpg weight) bycoefs labels coeflabels(mpg = "Miles Per Gallon") eqlabels(m1 = "Model 1" m2 = "Model 2") ;
Comment