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,
...
)
A list containing a data frame of pairwise statistics, and the comparison with the most extreme value of the statistic.
A formula indicating the response variable and the independent variable. e.g. y ~ group.
The data frame to use.
If no formula is given, the response variable.
If no formula is given, the grouping variable.
The number of significant digits in the output.
Additional arguments passed to the mad()
function.
Salvatore Mangiafico, mangiafico@njaes.rutgers.edu
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.
mangiaficoD
data(Catbus)
multiMangiaficoD(Steps ~ Teacher, data=Catbus)
Run the code above in your browser using DataLab