Announcement

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

  • Ordered Probit table with marginal effects

    Hi
    Is it possible to create an output table from an ordered probit model which includes the marginal effects for each variable. If this is possible could somebody explain what the code might be.
    Thanks in advance
    Noah

  • #2
    each outcome has its own margin. how do you want to address that?

    Code:
    sysuse auto, clear
    
    oprobit rep78 mpg foreign
    estimates store e1
    
    margins, dydx(*) post
    estimates store e2
    
    esttab e1 e2

    Comment

    Working...
    X