Announcement

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

  • How I can get jsut two decimals when I run mlogit tables using "esttab" comand?

    I am running "esttab" comand to get mlogit results. How I can to get just two rounded decimals in the output?

    I would wholeheartedly appreciate any help!

  • #2
    estout is from SSC (FAQ Advice #12).

    Code:
    webuse sysdsn1, clear
    mlogit insure age male nonwhite i.site
    esttab, drop( Indemnity: _cons) unstack nobaselevels nonumbers mlab(none) b(2)
    Res.:

    Code:
    . esttab, drop( Indemnity: _cons) unstack nobaselevels nonumbers mlab(none) b(2)
    
    --------------------------------------------
                      Prepaid        Uninsure   
    --------------------------------------------
    age                 -0.01           -0.01   
                      (-1.90)         (-0.68)   
    
    male                 0.56**          0.45   
                       (2.77)          (1.23)   
    
    nonwhite             0.97***         0.22   
                       (4.12)          (0.51)   
    
    2.site               0.11           -1.21*  
                       (0.54)         (-2.57)   
    
    3.site              -0.59**         -0.21   
                      (-2.58)         (-0.57)   
    --------------------------------------------
    N                     615                   
    --------------------------------------------
    t statistics in parentheses
    * p<0.05, ** p<0.01, *** p<0.001

    Comment


    • #3
      Dear Andrew,

      thank you very much for your reply. Your help has solved my problem and it works perfectly, thank you again.

      best

      Comment

      Working...
      X