powered by
big_plsr
Summarize a big_plsr model
# S3 method for big_plsr summary(object, ..., X = NULL, Y = NULL)
An object of class summary.big_plsr.
summary.big_plsr
A fitted PLS model.
Unused.
Optional design matrix to recompute reconstruction metrics.
Optional response matrix/vector.
set.seed(123) X <- matrix(rnorm(40), nrow = 10) y <- X[, 1] - 0.5 * X[, 2] + rnorm(10, sd = 0.1) fit <- pls_fit(X, y, ncomp = 2, scores = "r") summary(fit)
Run the code above in your browser using DataLab