Hello,
I'm trying to compare coefficients from two aslogit models with the same specification but run on two different datasets.
keep ... a subset of the data.
keep ... a subset of the data.
I have seen an old post
that suggests that this should work, but Stata says "asclogit is not supported by suest".
After this, I would run "test a", "test b", etc.
I'm wondering whether the comparison I'm trying to make is legitimate, and whether someone could point out what I'm doing wrong/what I should do.
Thank you very much in advance,
Danae
I'm trying to compare coefficients from two aslogit models with the same specification but run on two different datasets.
keep ... a subset of the data.
Code:
asclogit Chosen c.a c.b c.c c.d, or casevars(c.age i.female i.treatment1 i.treatment2) case(Person_Choice) alternatives(Left) basealternative(1) vce(cluster ID) constraints( ) estimates store one
Code:
asclogit Chosen c.a c.b c.c c.d, or casevars(c.age i.female i.treatment1 i.treatment2) case(Person_Choice) alternatives(Left) basealternative(1) vce(cluster ID) constraints( ) estimates store two
Code:
suest one two
HTML Code:
https://www.stata.com/statalist/archive/2010-11/msg00324.html
After this, I would run "test a", "test b", etc.
I'm wondering whether the comparison I'm trying to make is legitimate, and whether someone could point out what I'm doing wrong/what I should do.
Thank you very much in advance,
Danae
Comment