R/print.smacofboot.R

Defines functions print.smacofboot

print.smacofboot <- function(x,...)
{
  cat("\nCall: ")
  print(x$call)
  cat("\n")
  cat("SMACOF Bootstrap:\n")
  cat("Number of objects:",x$nobj,"\n")
  cat("Number of replications:",x$nrep,"\n")
  cat("\n")
  cat("Mean bootstrap stress: ", round(mean(x$stressvec), 4), "\n")
  cat("Stress percentile CI:\n")
  print(round(x$bootci, 4))
  cat("\nStability coefficient:", round(x$stab, 4), "\n")
  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 May 6, 2022, 9:05 a.m.