Free Access Week - Data Engineering + BI
Data Engineering and BI courses are free this week!
Free Access Week - Jun 2-8

mosaic (version 0.10.0)

compareMean: Compare means between 2 groups

Description

A function to calculate the difference between the means of a continuous variable for two groups.

Usage

compareMean(formula, data = parent.frame(), ...)

Arguments

formula
a formula
data
a data frame in which x is evaluated if x is a formula. Note that the default is data=parent.frame(). This makes it convenient to use this function interactively by treating the working envionment as if it were a da
...
other arguments

Value

  • the difference in means between the second and first group

See Also

do, compareProportion and shuffle

Examples

Run this code
if (require(mosaicData)) {
  data(HELPrct)
  # calculate the observed difference
  mean(age ~ sex, data=HELPrct)
  obs <- diffmean(age ~ sex, data=HELPrct); obs
  # calculate the permutation distribution
  nulldist <- do(100) * diffmean(age ~ shuffle(sex),
    data=HELPrct)
  histogram(~ diffmean, groups=(diffmean >= obs), nulldist,
    xlab="difference in means")
}

Run the code above in your browser using DataLab