Announcement

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

  • Storing marginal effects coefficients in a table

    Hi,

    I am trying to store my marginal effects coefficient results following a Logit regression in a table using the outreg2 command. However, the table produced includes the normal coefficients, which I do not want. The code I have used is pasted below. Does anyone know how I can store the marginal effect coefficients?

    logit poverty union, r
    margins, dydx(*)
    outreg2 using logitresults1, replace excel dec(3)


    Thanks.
    Attached Files

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

    Code:
    help margins
    Code:
    logit poverty union, r
    margins, dydx(*) post
    outreg2 using logitresults1, replace excel dec(3)

    Comment


    • #3
      Perfect, thank you very much!

      Comment

      Working...
      X