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