R/print.plsRmultiModel.R

Defines functions print.plsRmultiModel

#' @export
print.plsRmultiModel <- function(x, ...) {
  cat("Experimental multivariate PLS2 model\n")
  cat("Number of responses:\n")
  print(x$ny)
  cat("Number of required components:\n")
  print(x$nt)
  cat("Number of successfully computed components:\n")
  print(x$computed_nt)
  cat("Coefficient matrix:\n")
  print(x$Coeffs)
  invisible(x)
}

Try the plsRglm package in your browser

Any scripts or data that you put into this service are public.

plsRglm documentation built on June 17, 2026, 5:06 p.m.