Hello everyone,
I have the following problem: I estimate a logit regression with a number of covariates. I then obtain fitted values at several values of a covariate of interest using the "margins" command. For example:
Now I would like to refer to the estimated margins to use them in further calculations (so something like _b[distance=100], _b[distance=200]). What is the syntax to do this?
Thank you!
I have the following problem: I estimate a logit regression with a number of covariates. I then obtain fitted values at several values of a covariate of interest using the "margins" command. For example:
Code:
webuse margex, clear logit outcome i.group distance margins, at(distance=(100 200)) post
Thank you!
Comment