R/print.robtab.R

Defines functions print.robtab

print.robtab <-
function(x,...)
{
  cat("Call:\n")
  print(x$call)
  
  cat("\nParameter table: \n")
  if (ncol(x$partable) >= 8) {
    print(round(x$partable, 4))
  } else {  
    print(x$partable)
  }
  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 Nov. 2, 2023, 6:25 p.m.