boot.env: Bootstrap for env

Description Usage Arguments Details Value Examples

View source: R/boot.env.R

Description

Compute bootstrap standard error for the envelope estimator.

Usage

1
boot.env(X, Y, u, B)

Arguments

X

Predictors. An n by p matrix, p is the number of predictors. The predictors can be univariate or multivariate, discrete or continuous.

Y

Multivariate responses. An n by r matrix, r is the number of responses and n is number of observations. The responses must be continuous variables.

u

Dimension of the envelope. An integer between 0 and r.

B

Number of bootstrap samples. A positive integer.

Details

This function computes the bootstrap standard errors for the regression coefficients in the envelope model by bootstrapping the residuals.

Value

The output is an r by p matrix.

bootse

The standard error for elements in beta computed by bootstrap.

Examples

1
2
3
4
5
6
7
8
9
data(wheatprotein)
X <- wheatprotein[, 8]
Y <- wheatprotein[, 1:6]
u <- u.env(X, Y)
u

B <- 100
bootse <- boot.env(X, Y, 1, B)
bootse

therimalaya/envelope documentation built on May 29, 2019, 1:38 p.m.