t_var_test | R Documentation |
t_var_test
tests for equal variance based on var.test
and calls t.test, setting the option var.equal accordingly.
t_var_test(data, formula, cutoff = 0.05)
data |
Tibble or data_frame. |
formula |
Formula object with dependent and independent variable. |
cutoff |
is significance threshold for equal variances. |
A list from t.test
t_var_test(mtcars, wt ~ am)
# may be used in pipes:
mtcars |> t_var_test(wt ~ am)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.