R/printWilcoxPVal.R

#' Functions to get p-value from  Wilcoxon test
#' @description Functions to get p-value from Wilcoxon test, used by createNiceTable()

printWilcoxPVal <- function(fmla, data) {
  k <- wilcox.test(fmla, data, paired=FALSE)
  printPVal(k$p.value)
}
mssm-msf-2019/BiostatsALL documentation built on May 22, 2019, 12:16 p.m.