Find Cohen d and confidence intervals
Given a data.frame or matrix, find the standardized mean difference (Cohen's d) and confidence intervals for each variable depending upon a grouping variable. Convert the d statistic to the r equivalent, report the student's t statistic and associated p values, and return statistics for both values of the grouping variable. The Mahalanobis distance between the centroids of the two groups in the space defined by all the variables ia also found. Confidence intervals for Cohen d for one group (difference from 0) may also be found.
cohen.d(x, group,alpha=.05,std=TRUE,sort=NULL,dictionary=NULL,MD=TRUE,data=NULL) d.robust(x,group,trim=.2) cohen.d.ci(d,n=NULL,n2=NULL,n1=NULL,alpha=.05) d.ci(d,n=NULL,n2=NULL,n1=NULL,alpha=.05) cohen.d.by(x,group,group2,alpha=.05,MD=TRUE) d2r(d) r2d(rho) d2t(d,n=NULL,n2=NULL,n1=NULL) t2d(t,n=NULL,n2=NULL,n1=NULL) m2t(m1,m2,s1,s2,n1=NULL,n2=NULL,n=NULL,pooled=TRUE)
x |
A data frame or matrix (can be specified in formula mode) |
group |
Some dichotomous grouping variable (may be specified using formula input (see example)) |
group2 |
Apply cohen.d for each of the subgroups defined by group2 (may be specified by formula as well) |
data |
If using formula mode and specifying a particular variable (see example) |
d |
An effect size |
trim |
The amount of trimming used in finding the means and sds in d.robust |
n |
Total sample size (of groups 1 and 2) |
n1 |
Sample size of group 1 (if only one group) |
n2 |
Sample size of group 2 |
pooled |
Pool the two variances |
t |
Student's t statistic |
alpha |
1-alpha is the width of the confidence interval |
std |
Find the correlation rather covariance matrix |
rho |
A correlation to be converted to an effect size |
m1 |
Mean of group 1 |
m2 |
Mean of group 2 |
s1 |
Standard deviation of group 1 |
s2 |
Standard deviation of group 2 |
sort |
Should we sort (and if so, in which direction), the results of cohen.d? Directions are "decreasing" or "increasing". |
dictionary |
What are the items being described? |
MD |
Find Mahalanobis distance in cohen.d. |
There are many ways of reporting how two groups differ. Cohen's d statistic is just the differences of means expressed in terms of the pooled within group standard deviation. This is insensitive to sample size. r is the a universal measure of effect size that is a simple function of d, but is bounded -1 to 1. The t statistic is merely d * sqrt(n)/2 and thus reflects sample size.
Confidence intervals for Cohen's d may be found by converting the d to a t, finding the confidence intervals for t, and then converting those back to ds. This take advantage of the uniroot function and the non-centrality parameter of the t distribution.
The results of cohen.d
may be displayed using the error.dots
function. This will include the labels provided in the dictionary.
In the case of finding the confidence interval for a comparison against 0 (the one sample case), specify n1. This will yield a d = t/sqrt(n1) whereas in the case of the differnece between two samples, d = 2*t/sqrt(n) (for equal sample sizes n = n1+ n2) or d = t/sqrt(1/n1 + 1/n2) for the case of unequal sample sizes.
cohen.d.by
will find Cohen's d for groups for each subset of the data defined by group2. The summary of the output produces a simplified listing of the d values for each variable for each group. May be called directly from cohen.d by using formula input and specifying two grouping variables.
d.robust
follows Algina et al. 2005) to find trimmed means (trim =.2) and Winsorize variances (trim =.2). Supposedly, this provides a more robust estimate of effect sizes.
m2t
reports Student's t.test for two groups given their means, standard deviations, and sample size. This is convenient when checking statistics where those estimates are provided, but the raw data are not available. By default,it gives the pooled estimate of variance, but if pooled is FALSE, it applies Welch's correction.
The Mahalanobis Distance combines the individual ds and weight them by their unique contribution: D = √{d' R^{-1}d}.
By default, cohen.d
will find the Mahalanobis distance between the two groups (if there is more than one DV.) This requires finding the correlation of all of the DVs and can fail if that matrix is not invertible because some pairs do not exist. Thus, setting MD=FALSE will prevent the Mahalanobis calculation.
d |
Cohen's d statistic, including the upper and lower confidence levels |
hedges.g |
Hedge's g statistic |
M.dist |
Mahalanobis distance between the two groups |
t |
Student's t statistic |
r |
The point biserial r equivalent of d |
n |
sample size used for each analysis |
p |
The probability of abs(t)>0 |
descriptive |
The descriptive statistics for each group |
Cohen and Hedges differ in they way they calculate the pooled within group standard deviation. I find the treatment by McGrath and Meyer to be most helpful in understanding the differences.
William Revelle
Cohen, Jackob (1988) Statistical Power Analysis for the Behavioral Sciences. 2nd Edition, Lawrence Erlbaum Associates.
Algina, James and Keselman, H. J. and Penfield, Randall D. (2005) An Alternative to Cohen's Standardized Mean Difference Effect Size: A Robust Parameter and Confidence Interval in the Two Independent Groups Case. Psychological Methods. 10, 317-328.
McGrath, Robert E and Meyer, Gregory J. (2006) When effect sizes disagree: the case of r and d. Psychological methods, 11, 4, 386-401.
cohen.d(sat.act,"gender") cohen.d(sat.act ~ gender) #formula input version cd <- cohen.d.by(sat.act,"gender","education") cohen.d(SATV + SATQ ~ gender, data=sat.act) #just choose two variables summary(cd) #summarize the output #formula version combines these functions cd <- cohen.d(sat.act ~ gender + education) #find d by gender for each level of education summary(cd) #now show several examples of confidence intervals #one group (d vs 0) #consider the t from the cushny data set t2d( -4.0621,n1=10) d.ci(-1.284549,n1=10) #the confidence interval of the effect of drug on sleep #two groups d.ci(.62,n=64) #equal group size d.ci(.62,n1=35,n2=29) #unequal group size
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.