Learn R Programming

Compositional (version 3.7)

Principal components regression: Principal components regression

Description

Principal components regression.

Usage

pcr(y, x, k = 1, xnew = NULL)

Arguments

y

A real values vector.

x

A matrix with the predictor variable(s), they have to be continuous.

k

The number of principal components to use.

xnew

If you have new data use it, otherwise leave it NULL.

Value

A list including:

be

The beta coefficients.

per

The percentage of variance of the cross product of the independent variables explained by the k components.

est

The fitted or the predicted values (if xnew is not NULL).

Details

The principal components of the cross product of the independent variables are obtained and classical regression is performed. This is used in the function alfa.pcr.

References

Jolliffe I.T. (2002). Principal Component Analysis.

See Also

pcr.tune, alfa.pcr, glm.pcr

Examples

Run this code
# NOT RUN {
library(MASS)
x <- as.matrix(fgl[, 2:9])
y <- as.vector(fgl[, 1])
mod1 <- pcr(y, x, 1)
mod2 <- pcr(y, x, 2)
# }

Run the code above in your browser using DataLab