R/print.proC.R

Defines functions print.proC

Documented in print.proC

print.proC <- function(x, ...) {
  ans <- rbind(x$Anova.MSS, x$Anova.ESS, x$Anova.TSS)
  dimnames(ans) <- list(NULL, "Sum of Squares")
  ans <- data.frame(Source = c("Model", "Error", "Total"), ans)
  print(list(`Rotation Matrix` = x$Rotation.Matrix, `Analysis of Variance` = ans))
}

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.