unpaired_t_test <- function(x, y, ...) {
t.test(x = x, y = y, paired = FALSE, ...)
}
paired_t_test <- function(x, y, ...) {
t.test(x = x, y = y, paired = TRUE, ...)
}
unpaired_wilcoxon_test <- function(x, y, ...) {
wilcox.test(x = x, y = y, paired = FALSE, ...)
}
paired_wilcoxon_test <- function(x, y, ...) {
wilcox.test(x = x, y = y, paired = TRUE, ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.