I can not find any documentation on the type="bca" for the R command confint used to find confidence intervals. I am using this function to find the confidence interval of a bootstrap model. I know there are normal CI, percentile, and pivotal. Does the bca correspond to pivotal or something else?
Contents
hide
Best Answer
From ?boot::boot.ci
:
bca: The intervals calculated using the adjusted bootstrap percentile (BCa) method.
See references therein, particularly Davison and Hinkley.
The code that actually does this is in the (hidden) function boot:::bca.ci
. The comments in the source code (here say:
# # Adjusted Percentile (BCa) Confidence interval method. This method # uses quantities calculated from the empirical influence values to # improve on the precentile interval. Usually the required order # statistics for this method will not be integers and so norm.inter # is used to find them. #
Similar Posts:
- Solved – how can I calculate confidence interval with small sample in R
- Solved – using bootstrap to calculate t-test p-value and CI in r
- Solved – Computing confidence intervals for count data
- Solved – Monte Carlo study to estimate bootstrap CI
- Solved – Bootstrapping Confidence intervals for model coefficients in R