Hello statlisters,
I am using a probit model to carry out my estimation. My explanatory variables comprise squared, continuous and dummy variables.
After running my probit model, and then the margins command, I realized that the probit model has the squared terms but the output from margins does not have them.
Is there a way I can ensure that I have the squared terms in the output?
I am using a probit model to carry out my estimation. My explanatory variables comprise squared, continuous and dummy variables.
After running my probit model, and then the margins command, I realized that the probit model has the squared terms but the output from margins does not have them.
Is there a way I can ensure that I have the squared terms in the output?
Code:
probit y i.x1 i.x2 x3 c.x3#c.x3 i.x4 i.x5 x6 x7 c.x7#c.x7, cluster(id)
Code:
margins, dydx(*)post
Comment