Learn R Programming

Renvlp (version 2.7)

boot.genv: Bootstrap for genv

Description

Compute bootstrap standard error for the groupwise envelope.

Usage

boot.genv(X, Y, Z, 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.

Z

A group indicator vector of length \(n\), where \(n\) denotes the number of observations.

u

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

B

Number of bootstrap samples. A positive integer.

Value

The output is an p by r matrix.

bootse

The standard error for elements in beta computed by bootstrap.

Details

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

Examples

Run this code
# NOT RUN {
data(fiberpaper)
X <- fiberpaper[ , c(5, 7)]
Y <- fiberpaper[ , 1:3]
Z <- as.numeric(fiberpaper[ , 6] > mean(fiberpaper[ , 6]))

# }
# NOT RUN {
B <- 100
# }
# NOT RUN {
res <- boot.genv(X, Y, Z, 2, B)
# }
# NOT RUN {
res$bootse[[1]]
# }
# NOT RUN {
res$bootse[[2]]
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab