R/printKruskalPVal.R

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

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