box_dist {nullabor} | R Documentation |
Distance based on side by side Boxplots
Description
Assuming that data set X consists of a categorical group variable a numeric value, a summary of the first quartile, median and third quartile of this value is calculated for each group. The extent (as absolute difference) of the minimum and maximum value across groups is computed for first quartile, median and third quartile. Same is done for data PX. Finally an euclidean distance is calculated between the absolute differences of X and PX.
Usage
box_dist(X, PX)
Arguments
X |
a data.frame with one factor variable and one continuous variable |
PX |
a data.frame with one factor variable and one continuous variable |
Value
distance between X and PX
Examples
if(require('dplyr')) {
with(mtcars,
box_dist(data.frame(as.factor(am), mpg),
data.frame(as.factor(sample(am)), mpg))
)
}
[Package nullabor version 0.3.12 Index]