Announcement

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

  • esttab and overall R-squared question

    I am running a regression with panel data (xtreg and fe) and after I am piloting those data, within Stata, with estab command.

    However, I cannot find a prefix to plot the Overall R-squared but I know only the following command which print only the R and R-squared adjusted:

    esttab m1 m2 m3 m4 m5 m6 m7 m8, se r2 ar2

    Could you please help me? Any ideas?

    Thank you in advance.

    With kind regards,

    Georgios Mantas

  • #2
    Code:
    esttab, scalars(r2 r2_a r2_w r2_o r2_b)
    These yield within R-squared, adjusted R-squared, within R-squared (again), overall R-squared, and between R-squared. Look up the scalars() option in help esttab.

    Comment

    Working...
    X