Dear All,
I am running a panel dataset, with N = 26 and T = 13 (balanced, no missing data). I checked to see should I regress the model with REM/FEM, but the p-value is insignificant so I believe it's better with Pooled OLS?
Since I do not have much experience with Pooled OLS (I worked with xtreg, re/fe more frequent), I would like to ask:
I am running a panel dataset, with N = 26 and T = 13 (balanced, no missing data). I checked to see should I regress the model with REM/FEM, but the p-value is insignificant so I believe it's better with Pooled OLS?
Code:
xtreg roa fo size lage leverage div_payout asset_turnover Random-effects GLS regression Number of obs = 338 Group variable: code Number of groups = 26 R-squared: Obs per group: Within = 0.9786 min = 13 Between = 0.9959 avg = 13.0 Overall = 0.9828 max = 13 Wald chi2(6) = 18927.20 corr(u_i, X) = 0 (assumed) Prob > chi2 = 0.0000 -------------------------------------------------------------------------------- roa | Coefficient Std. err. z P>|z| [95% conf. interval] ---------------+---------------------------------------------------------------- fo | .0002094 .0006397 0.33 0.743 -.0010444 .0014633 size | -.0002191 .0000968 -2.26 0.024 -.0004088 -.0000295 lage | -.0004467 .0001438 -3.11 0.002 -.0007286 -.0001648 leverage | .0016867 .0018883 0.89 0.372 -.0020144 .0053878 div_payout | .0004386 .0000608 7.22 0.000 .0003195 .0005578 asset_turnover | 1.108709 .0102544 108.12 0.000 1.08861 1.128807 _cons | .0063234 .0024668 2.56 0.010 .0014884 .0111583 ---------------+---------------------------------------------------------------- sigma_u | 0 sigma_e | .00108588 rho | 0 (fraction of variance due to u_i) --------------------------------------------------------------------------------
Code:
xttest0 Estimated results: | Var SD = sqrt(Var) ---------+----------------------------- roa | .0000706 .0084049 e | 1.18e-06 .0010859 u | 0 0 Test: Var(u) = 0 chibar2(01) = 0.00 Prob > chibar2 = 1.0000
- Is the correct command for Pooled OLS is?:
Code:
reg roa fo size lage leverage div_payout asset_turnover, vce (cluster code)
- If I want to test for heteroskedasticity, would imtest, white work?
- Does xtserial work in this case of checking for serial correlation with Pooled OLS?
- What command can I use to check for cross-sectional correlation?
- Should any of the above violation exist, would xtgls be appropriate to address it? I understand that xtgls works better for the T>N datasets so I'm unsure what to do.
Comment