Hi, I need to get and plot OR for random effects of a multilevel model:
. sysuse auto, clear
. mixed price weight length || foreign:
. coefplot, drop(_cons) xline(1) eform xtitle(Odds ratio)
I need to get the OR for the random effects part. Then, as you can see, can get a nice graph for weight and length (1st-level or fixed effect variables) but need to plot foreign (2nd- level, random effects variable), as well
Many thanks!
R
. sysuse auto, clear
. mixed price weight length || foreign:
. coefplot, drop(_cons) xline(1) eform xtitle(Odds ratio)
I need to get the OR for the random effects part. Then, as you can see, can get a nice graph for weight and length (1st-level or fixed effect variables) but need to plot foreign (2nd- level, random effects variable), as well
Many thanks!
R
Comment