#' 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.