We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0f1e0 commit 5e2457fCopy full SHA for 5e2457f
inst/bootlm.m
@@ -1255,11 +1255,11 @@
1255
switch (lower (METHOD))
1256
case 'wild'
1257
% Use the HC1 standard errors
1258
- SED = STATS.std_err
+ SED = STATS.std_err;
1259
STATS = rmfield (STATS, 'std_err');
1260
case {'bayes', 'bayesian'}
1261
% Use the standard deviation of the posterior distribution
1262
- SED = std (BOOTSTAT, 0, 2)
+ SED = std (BOOTSTAT, 0, 2);
1263
end
1264
% We would like to estimate standard deviation of the difference for
1265
% each comparison using the bootstrap standard error (rather than
0 commit comments