R/print.ntestRes.R

Defines functions print.ntestRes

Documented in print.ntestRes

print.ntestRes <-
function(x, ...){
  cat("Pearson's Chi-squared test for normality of residuals\n")
  t <- as.data.frame(cbind(x$p.value.res1,x$p.value.res2))
  rownames(t) <- "p.value"
  colnames(t) <- c("time = 1", "time = 2")
  print(t)
}

Try the iRepro package in your browser

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

iRepro documentation built on Aug. 8, 2023, 5:13 p.m.