Hi Everyone,
I am working on a project that collected data from several countries. One of the analytical goals of the project was to compare the b-value of a model before and after a specific covariate was added. I had used suest to accomplish this:
We received a request from a reviewer to use a multilevel model in lieu of our initial model. However, when using mixed/meglm I can no longer use the suest command to compare coefficient equality. What are my options to do so following mixed/meglm?
Cheers,
David.
I am working on a project that collected data from several countries. One of the analytical goals of the project was to compare the b-value of a model before and after a specific covariate was added. I had used suest to accomplish this:
Code:
regress y x1 if x2 < . estimates store m1 regress y x1 x2 estimates store m2 suest m1 m2, vce(cluster x3) test _b[m1:x1] = _b[m2:x1]
Cheers,
David.