pairwise_t_test | R Documentation |
pairwise_t_test
calculate pairwise comparisons between group levels
with corrections for multiple testing based on pairwise.t.test
pairwise_t_test(
dep_var,
indep_var,
adjmethod = "fdr",
plevel = 0.05,
symbols = letters[-1]
)
dep_var |
dependent variable, containing the data |
indep_var |
independent variable, should be factor |
adjmethod |
method for adjusting p values (see p.adjust) |
plevel |
threshold for significance |
symbols |
predefined as b,c, d...; provides footnotes to mark group differences, e.g. b means different from group 2 |
A list with method output of pairwise.t.test, matrix of p-values, and character vector with significance indicators.
pairwise_t_test(dep_var = mtcars$wt, indep_var = mtcars$cyl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.