Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Regression Output of Margins

    How to output the Margins of logit regression? I am using the following commands but the output table in latex for both logit and margin is coming to same i.e. equal to the logit regression .:
    logit e401k inc age male
    eststo model6
    esttab model6 using model6.tex, replace

    *Margins
    margins, dydx(*)
    eststo model7
    esttab model7 using model7.tex, replace

  • #2
    You need the -post- option of margins. Note that estout is from SSC (FAQ Advice #12).

    Code:
    logit e401k inc age male
    margins, dydx(*) post
    eststo model7
    esttab model7 using model7.tex, replace

    Comment


    • #3
      Thank you so much, it worked!

      Comment

      Working...
      X