R/print.vmu.R

Defines functions print.vmu

Documented in print.vmu

print.vmu <- function(x,...) {
  cat("\nCall: ")
  print(x$call)
  cat("\n")
  cat("Number of subjects: ", nrow(x$conf.row),"\n", sep = "")
  cat("Number of objects: ", nrow(x$conf.col),"\n", sep = "")
  cat("Number of dimensions: ", x$ndim, "\n", sep = "")
  cat("Variance accounted for: ", round(x$VAF*100, 2), "%\n", sep = "")
  cat("\n")
}

Try the smacof package in your browser

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

smacof documentation built on March 19, 2024, 3:09 a.m.