Hey there,
I have a question on a user-written package boottest.
when I run a regression with clustered error and then perform a boottest
reg charlindex treat, cluster(StudyWard)
boottest treat=0
I get an error
option mlabformat() not allowed
which seems unusual considering that this a figure option
The data
I have a question on a user-written package boottest.
when I run a regression with clustered error and then perform a boottest
reg charlindex treat, cluster(StudyWard)
boottest treat=0
I get an error
option mlabformat() not allowed
which seems unusual considering that this a figure option
Code:
. reg charlindex treat, cluster(StudyWard) Linear regression Number of obs = 36 F(1, 16) = 0.27 Prob > F = 0.6101 R-squared = 0.0102 Root MSE = 1.3216 (Std. Err. adjusted for 17 clusters in StudyWard) Robust charlindex Coef. Std. Err. t P>t [95% Conf. Interval] treat -.2625 .5047524 -0.52 0.610 -1.332527 .8075274 _cons .8125 .4625186 1.76 0.098 -.1679956 1.792996 . boottest treat=0 Wild bootstrap-t, null imposed, 999 replications, Wald test, bootstrap clustering by > StudyWard, Rademacher weights: treat=0 t(16) = -0.5201 Prob>t = 0.6146 option mlabformat() not allowed r(198);
The data
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input int StudyWard byte charlindex float treat 19 0 1 142 0 1 114 0 0 119 0 1 157 0 0 114 3 0 119 0 1 143 0 0 216 0 1 157 0 0 143 0 0 211 0 1 142 0 1 215 1 1 217 0 0 19 0 1 142 2 1 213 2 0 120 0 0 216 0 1 119 0 1 113 0 0 112 0 1 217 0 0 143 0 0 15 6 0 11 0 1 215 2 1 114 2 0 211 3 1 16 0 0 113 0 0 112 1 1 211 0 1 119 0 1 112 2 1 end label values StudyWard labels2 label def labels2 11 "1-7AS", modify label def labels2 15 "1-8AS", modify label def labels2 16 "1-8BN", modify label def labels2 19 "1-9AN", modify label def labels2 112 "2-TW", modify label def labels2 113 "2-W1A", modify label def labels2 114 "2-W1B", modify label def labels2 119 "2-W2B", modify label def labels2 120 "2-W2C", modify label def labels2 142 "3-L5W", modify label def labels2 143 "3-L6W", modify label def labels2 157 "4-2A", modify label def labels2 211 "5-X10N", modify label def labels2 213 "5-X7N", modify label def labels2 215 "5-X8N", modify label def labels2 216 "5-X8S", modify label def labels2 217 "5-X9N", modify
Comment