R/print.aspect.R

Defines functions print.aspect

Documented in print.aspect

print.aspect <- function(x, ...)
{
  cat("\nCall:\n")
  print(x$call)
  cat("\nValue target function:",round(x$loss,3))
  cat("\n\nCorrelation matrix of the transformed data:\n")
  print(round(x$cormat, 3))
  cat("\n")
  invisible(x)
}

Try the aspect package in your browser

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

aspect documentation built on May 6, 2022, 9:06 a.m.