Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

im trying to output the average partial effects estimated after a regression but am having some difficulty. i realize using the margeff command works around this, but i have some interaction terms in my model and i cant get margeff to work with these. i know margins works, but when i run the code below, the .tex file reports the results of the glm.

eststo clear
eststo: glm y x1 x2 x3 c.x1#c.x2 c.x3#c.x3, link(logit) robust
esttab using 1.tex, label
eststo clear
glm y x1 x2 x3 c.x1#c.x2 c.x3#c.x3, link(logit) robust
margins, dydx(*)
estimates store margins
esttab using 2.tex, label
eststo clear

any help is appreciated!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.