powered by
Computes the Cohen's d and Hedges'g effect size statistics.
CohenD(x, y = NULL, pooled = TRUE, correct = FALSE, conf.level = NA, na.rm = FALSE)
a numeric vector with 3 elements:
the effect size d
lower bound of the confidence interval
upper bound of the confidence interval
a (non-empty) numeric vector of data values.
logical, indicating whether compute pooled standard deviation or the whole sample standard deviation. Default is TRUE.
logical, indicating whether to apply the Hedges correction. (Default: FALSE)
confidence level of the interval. Set this to NA, if no confidence intervals should be calculated. (This is the default)
logical. Should missing values be removed? Defaults to FALSE.
Andri Signorell <andri@signorell.net>, William Revelle <revelle@northwestern.edu> (CI)
Cohen, J. (1988) Statistical power analysis for the behavioral sciences (2nd ed.) Academic Press, New York.
Hedges, L. V. & Olkin, I. (1985) Statistical methods for meta-analysis Academic Press, Orlando, FL
Smithson, M.J. (2003) Confidence Intervals, Quantitative Applications in the Social Sciences Series, No. 140. Thousand Oaks, CA: Sage. pp. 39-41
mean, var
mean
var
x <- d.pizza$price[d.pizza$driver=="Carter"] y <- d.pizza$price[d.pizza$driver=="Miller"] CohenD(x, y, conf.level=0.95, na.rm=TRUE)
Run the code above in your browser using DataLab