Hi Stata list,
I am trying to perform a post estimation partial-F (Chow) test after a regression specified using a factor variable.
I have a model of the effect of price on the probability of purchase of different goods. Since the level of purchase and the effect of price may both differ by the good, I estimate a different intercept and slope for each good (a specific type of fixed effect model, I think). Here's the code:
I'd like to test whether the slopes for the different goods really differ. Per http://www.jblumenstock.com/files/co...4/FEModels.pdf, I am performing the
partial-F (Chow).
To do this after running the regression what is the appropriate code. Is it just:
Thanks!
I am trying to perform a post estimation partial-F (Chow) test after a regression specified using a factor variable.
I have a model of the effect of price on the probability of purchase of different goods. Since the level of purchase and the effect of price may both differ by the good, I estimate a different intercept and slope for each good (a specific type of fixed effect model, I think). Here's the code:
Code:
glm yvar_ind c.price##i.good, family(binomial) link(probit)
partial-F (Chow).
To do this after running the regression what is the appropriate code. Is it just:
Code:
test c.price#i.good
Comment