R/coef.mvdareg.R

coef.mvdareg <- function (object, ncomp = object$ncomp, 
  type = c("coefficients", "loadings", "weights", "y.loadings"), conf = .95, ...) {
  switch(match.arg(type), weights = {
    weights.mvdareg(object, ncomp, conf, ...)
  }, 
  loadings = {
    loadings.mvdareg(object, ncomp, conf, ...)
  }, 
  coefficients = {
    coefficients.mvdareg(object, ncomp, conf, ...)
  }, 
  y.loadings = {
    y.loadings(object, conf, ...)
  })
}

Try the mvdalab package in your browser

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

mvdalab documentation built on Oct. 6, 2022, 1:05 a.m.