Hi all,
I am bootstrapping a program and would like to obtain the confidence intervals for various levels, for example, 95% and 99%. In a normal situation this is easy. You simply ask to report the results anew:
However, I would like to do this for the BCa bootstrap. Let's repeat:
This seems not to work, because the -estat bootstrap- reverts to the initial level. Is it necessary to run the entire bootstrap again, to obtain the various BCa confidence intervals?
I am bootstrapping a program and would like to obtain the confidence intervals for various levels, for example, 95% and 99%. In a normal situation this is easy. You simply ask to report the results anew:
Code:
bootstrap, level(95): reg y x bootstrap, level(99)
However, I would like to do this for the BCa bootstrap. Let's repeat:
Code:
bootstrap, level(95) bca: reg y x estat bootstrap, all bootstrap, level(99) estat bootstrap, all
Comment