The functions compute the sum or mean of all pairwise absolute
differences. This differs from stats::mad(), which computes
the median absolute difference of each value from the median of
all the values. See the ISIwithR package (and the textbook it
accompanies) for examples using these functions in the context of
simulation-based inference.
Arguments
- x
a numeric vector or a formula.
- ...
additional arguments passed through to
MAD_orSAD_. Ifxis a formula,...should include an argument nameddataif the intent is to interpret the formula in a data frame.- data
a data frame in which to evaluate formulas (or bare names). Note that the default is
data = parent.frame(). This makes it convenient to use this function interactively by treating the working environment as if it were a data frame. But this may not be appropriate for programming uses. When programming, it is best to use an explicitdataargument – ideally supplying a data frame that contains the variables mentioned.- groups
a grouping variable, typically a name of a variable in
data- na.rm
a logical indicating whether NAs should be removed before calculating.