Description Usage Arguments Value See Also Examples
View source: R/tadaa_two_sample.R
An extension for stats::t.test with added boni and tidy and/or pretty output.
The result is either returned as a broom::tidy data.frame
or prettified using
various pixiedust::sprinkle shenanigans.
1 2 3 4 5 6 7 8 9 10 |
data |
A |
response |
The response variable (dependent). |
group |
The group variable, usually a |
direction |
Test direction, like |
paired |
If |
var.equal |
If set, passed to stats::t.test to decide whether to use a
Welch-correction. Default is |
conf.level |
Confidence level used for power and CI, default is |
print |
Print method, default |
A data.frame
by default, otherwise dust
object,
depending on print
.
Other Tadaa-functions:
tadaa_aov()
,
tadaa_chisq()
,
tadaa_kruskal()
,
tadaa_levene()
,
tadaa_nom()
,
tadaa_one_sample()
,
tadaa_ord()
,
tadaa_pairwise_tukey()
,
tadaa_pairwise_t()
,
tadaa_wilcoxon()
1 2 3 4 5 6 7 8 | set.seed(42)
df <- data.frame(x = runif(100), y = sample(c("A", "B"), 100, TRUE))
tadaa_t.test(df, x, y)
df <- data.frame(x = runif(100), y = c(rep("A", 50), rep("B", 50)))
tadaa_t.test(df, x, y, paired = TRUE)
tadaa_t.test(ngo, deutsch, geschl, print = "console")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.