View source: R/multiMangiaficoD.r
multiMangiaficoD | R Documentation |
Calculates Mangiafico's d, which is the difference in medians divided by the pooled median absolute deviation, for several groups in a pairwise manner.
multiMangiaficoD(
formula = NULL,
data = NULL,
x = NULL,
g = NULL,
digits = 3,
...
)
formula |
A formula indicating the response variable and the independent variable. e.g. y ~ group. |
data |
The data frame to use. |
x |
If no formula is given, the response variable. |
g |
If no formula is given, the grouping variable. |
digits |
The number of significant digits in the output. |
... |
Additional arguments passed to the |
Mangiafico's d is an appropriate effect size statistic where Mood's median test, or another test comparing two medians, might be used. Note that the response variable is treated as at least interval.
When the data in the first group are greater than in the second group, d is positive. When the data in the second group are greater than in the first group, d is negative.
Be cautious with this interpretation, as R will alphabetize groups in the formula interface if the grouping variable is not already a factor.
Currently, the function makes no provisions for NA
values in the data. It is recommended that NA
s be removed
beforehand.
A list containing a data frame of pairwise statistics, and the comparison with the most extreme value of the statistic.
The parsing of the formula is simplistic. The first variable on the left side is used as the measurement variable. The first variable on the right side is used for the grouping variable.
The parsing of the formula is simplistic. The first variable on the left side is used as the measurement variable. The first variable on the right side is used for the grouping variable.
Salvatore Mangiafico, mangiafico@njaes.rutgers.edu
https://rcompanion.org/handbook/F_09.html
mangiaficoD
data(Catbus)
multiMangiaficoD(Steps ~ Teacher, data=Catbus)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.