confints.bootpls: Bootstrap confidence intervals

View source: R/confints.bootpls.R

confints.bootplsR Documentation

Bootstrap confidence intervals

Description

This function is a wrapper for boot.ci to derive bootstrap-based confidence intervals from a "boot" object.

Usage

confints.bootpls(bootobject, indices = NULL, typeBCa = TRUE)

Arguments

bootobject

an object of class "boot"

indices

the indices of the predictor for which CIs should be calculated. Defaults to NULL: all the predictors will be used.

typeBCa

shall BCa bootstrap based CI derived ? Defaults to TRUE. This is a safety option since sometimes computing BCa bootstrap based CI fails whereas the other types of CI can still be derived.

Value

Matrix with the limits of bootstrap based CI for all (defaults) or only the selected predictors (indices option). The limits are given in that order: Normal Lower then Upper Limit, Basic Lower then Upper Limit, Percentile Lower then Upper Limit, BCa Lower then Upper Limit.

Author(s)

Frédéric Bertrand
frederic.bertrand@utt.fr
https://fbertran.github.io/homepage/

See Also

See also bootpls and bootplsglm.

Examples



data(Cornell)

#Lazraq-Cleroux PLS (Y,X) bootstrap
set.seed(250)
modpls <- plsR(Y~.,data=Cornell,3)
Cornell.bootYX <- bootpls(modpls, R=250, verbose=FALSE)
confints.bootpls(Cornell.bootYX,2:8)
confints.bootpls(Cornell.bootYX,2:8,typeBCa=FALSE)



plsRglm documentation built on March 31, 2023, 11:10 p.m.