Could someone help me how i can get the F value and adjusted R Square after running a regression with robust clustering because they are missing in the output?
Thanks
. use "C:\Program Files\Stata17\ado\base\a\auto.dta" (1978 automobile data) . regress price i.foreign, vce(cluster foreign) Linear regression Number of obs = 74 F(0, 1) = . Prob > F = . R-squared = 0.0024 Root MSE = 2966.4 (Std. err. adjusted for 2 clusters in foreign) ------------------------------------------------------------------------------ | Robust price | Coefficient std. err. t P>|t| [95% conf. interval] -------------+---------------------------------------------------------------- foreign | Foreign | 312.2587 1.28e-12 2.4e+14 0.000 312.2587 312.2587 _cons | 6072.423 9.22e-13 6.6e+15 0.000 6072.423 6072.423 ------------------------------------------------------------------------------ . See -help j_robustsingular-.
Comment