R/print.pb2.R

Defines functions print.pb2

Documented in print.pb2

print.pb2 <-
function(x,...)
{
  cat("Call:\n")
  print(x$call)
  
  cat("\nTest statistic: ", round(x$test, 4), ", p-value = ", round(x$p.value, 5), "\n", sep = "")
  cat("95% confidence interval:\n")
  cat(round(x$conf.int[1], 4), "  ", round(x$conf.int[2], 4), "\n\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.