Announcement

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

  • esttab - can you scale the r2

    Hi,

    Currently I am outputting the r2 as a decimal. However, my r2 is very low (e.g. 0.24%) and as a result I lose precision as it cuts it off as 0.002 or 0.000. Is it possible to output the r2 as a percentage? e.g. 0.24%

    Many thanks

  • #2
    Code:
    sysuse auto
    eststo: quietly regress price weight mpg
    esttab, b(a6) p(4) r2(25) nostar wide
    Code:
    . esttab, b(a6) p(4) r2(25) nostar wide
    
    --------------------------------------
                          (1)            
                        price            
    --------------------------------------
    weight           1.746559     (0.0081)
    mpg             -49.51222     (0.5673)
    _cons            1946.069     (0.5902)
    --------------------------------------
    N                      74            
    R-sq         0.2933891231947529099066685            
    --------------------------------------
    p-values in parentheses

    Comment


    • #3
      Thanks!!

      Comment

      Working...
      X