Calculates a difference in means between two groups

nice_diff_means(data, var, by)

Arguments

data

A data frame

var

A numeric variable containing the data for the calculation of the means

by

A grouping variable with only two values

Value

A numeric value for the difference in means

Examples

data(sleep)
sleep$group <- as.numeric(sleep$group)
nice_diff_means(data = sleep, var = "extra", by = "group")
#> [1] -1.58