#' Functions to get p-value from Satterthwaite t-test (un-equal variance)
#' @description Functions to get p-value from Satterthwaite t-test (un-equal variance), used by createNiceTable()
printTtestSattPVal <- function(fmla, data) {
fit <- t.test(fmla, data=data, var.equal = FALSE)
pv <- fit$p.value
printPVal(pv)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.