R/print.wilcoxh.R

print.wilcoxh <- function(x, ...)
{
  #print method for objects of class wilcoxh (from WilcoxH)
  res.table <- as.data.frame(rbind(x$SH.res, x$WH.res))
  row.names(res.table) <- c("Steiger-Hakstian","Wilcox H")
  colnames(res.table) <- c("X^2","df","p-value")

  cat("\nResults for 0-correlation tests: \n")
  print(res.table)
  cat("\n")
}

Try the mixPHM package in your browser

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

mixPHM documentation built on May 2, 2019, 5:56 p.m.