Applicable to small samples only? Not at all. The results you show contradict that, with regressions for 400000 observations.
-
Login or Register
- Log in with
tempname anees_uroot
tempfile unitroots
postfile `anees_uroot' str12 name dfuller_statistic dfuller_pvalue dfuller_lags using `unitroots'
foreach var of varlist backward_total regulatory_distance {
xtunitroot fisher `var', dfuller lags(1) demean trend
local dfuller_statistic = r(Zt)
xtunitroot fisher `var', dfuller lags(1) demean trend
local dfuller_pvalue = r(p)
xtunitroot fisher `var', dfuller lags(1) demean trend
local dfuller_lags = r(lags)
post `anees_uroot' ("`var'") (`dfuller_statistic') (`dfuller_pvalue') (`dfuller_lags')
}
Comment