R/print.rmanovab.R

Defines functions print.rmanovab

print.rmanovab <-
function(x,...)
{
  cat("Call:\n")
  print(x$call)
  cat("\nTest statistic:", round(x$test, 4),"\n")
  cat("Critical value:", round(x$crit, 4), "\n")
  if (x$test < x$crit) sig <- FALSE else sig <- TRUE
  cat("Significant: ", sig, "\n")
  cat("\n")
}

Try the WRS2 package in your browser

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

WRS2 documentation built on March 19, 2024, 3:08 a.m.