cmd:other
file |
# |
command |
t3_ols.do:
|
104 [+]
|
qui bootstrap b=r(mybeta) se=r(myse) , reps(`bsreps') nodots cluster(statefip) idcluster(pseudo_cluster_2)
seed(10101) saving(`pairs_bs_out' , double)
:
table3_np_boot
, lhs(`lhs') rhs(`rhs') keyrhs(`keyrhs') clusterid(pseudo_cluster_2) `yearonly'
-
/* calls program "table3_np_boot", which is defined in t34_programs.do. That program re-does the "deviations from means" and then
re-runs the regression, to get the betas and (clustered) standard errors. */
qui bootstrap b=r(mybeta) se=r(myse) , reps(`bsreps') nodots cluster(statefip) idcluster(pseudo_cluster_2)
seed(10101) saving(`pairs_bs_out' , double)
: table3_np_boot , lhs(`lhs') rhs(`rhs') keyrhs(`keyrhs') clusterid(pseudo_cluster_2) `yearonly'
|
t4_mcloop.do:
|
143 [+]
|
qui bootstrap b=r(mybeta) se=r(myse) , reps(`bsreps') nodots cluster(pseudo_cluster) idcluster(pseudo_cluster_2)
seed(10101) saving(`pairs_bs_out' , double)
:
table4_np_boot
, lhs(`lhs') rhs(`rhs') keyrhs(`keyrhs') clusterid(pseudo_cluster_2)
-
/* calls program "table4_np_boot", which is defined in t34_programs.do. That program re-does the "deviations from means" and then
re-runs the regression, to get the betas and (clustered) standard errors. */
qui bootstrap b=r(mybeta) se=r(myse) , reps(`bsreps') nodots cluster(pseudo_cluster) idcluster(pseudo_cluster_2)
seed(10101) saving(`pairs_bs_out' , double)
: table4_np_boot , lhs(`lhs') rhs(`rhs') keyrhs(`keyrhs') clusterid(pseudo_cluster_2)
|
table3.do:
|
36 [+]
|
t3_ols
, bsreps(`bsreps') sourcedata(`main_data') lhs(lnwage_sy) rhs(policy) keyrhs(policy)
|
:
|
41 [+]
|
t3_ols
, bsreps(`bsreps') sourcedata(`main_data') lhs(lnwage_sy) rhs(policy) keyrhs(policy) yearonly
|
:
|
46 [+]
|
t3_ar1
, bsreps(`bsreps') sourcedata(`main_data') lhs(lnwage_sy) rhs(policy i.statefip i.year) keyrhs(policy)
-
/* the t3_ar1 code does not partial out any fixed effects, so need to directly pass these in as regressors */
t3_ar1 , bsreps(`bsreps') sourcedata(`main_data') lhs(lnwage_sy) rhs(policy i.statefip i.year) keyrhs(policy)
|