Package: CohensdpLibrary 0.5.11
CohensdpLibrary: Cohen's D_p Computation with Confidence Intervals
Computing Cohen's d_p in any experimental designs (between-subject, within-subject, and single-group design). Cousineau (2022) <https://github.com/dcousin3/CohensdpLibrary>; Cohen (1969, ISBN: 0-8058-0283-5).
Authors:
CohensdpLibrary_0.5.11.tar.gz
CohensdpLibrary_0.5.11.tar.gz(r-4.5-noble)CohensdpLibrary_0.5.11.tar.gz(r-4.4-noble)
CohensdpLibrary.pdf |CohensdpLibrary.html✨
CohensdpLibrary/json (API)
NEWS
# Install 'CohensdpLibrary' in R: |
install.packages('CohensdpLibrary', repos = 'https://cloud.r-project.org') |
This package does not link to any Github/Gitlab/R-forge repository. No issue tracker or development information is available.
Last updated 7 months agofrom:8eed56cf8e. Checks:3 OK. Indexed: no.
Target | Result | Latest binary |
---|---|---|
Doc / Vignettes | OK | Mar 09 2025 |
R-4.5-linux-x86_64 | OK | Mar 09 2025 |
R-4.4-linux-x86_64 | OK | Mar 09 2025 |
Exports:CohensdpdkprimedlprimedlseconddpilsecondexplainHedgesgphypergeometric0F1hypergeometric1F1hypergeometric2F1Jpkprimeplprimeplsecondppilsecondqkprimeqlprimeqlsecondqpilsecondsummarize
Citation
To cite the package Cohenspd in publications, please use:
Cousineau, D. (2022--submitted). The exact confidence interval of the Cohen's dp in repeated-measure designs, submitted, 1-10.
I have invested a lot of time and effort in finding the distribution of the Cohen's dp. Please cite this work when using it. Academic retribution is citation!
Corresponding BibTeX entry:
@Article{, title = {The Exact Confidence Interval of the Cohen's dp in Repeated-Measure Designs.}, author = {Denis Cousineau}, journal = {The Quantitative Methods for Psychology}, year = {2022 --submitted}, volume = {submitted}, number = {submitted}, pages = {1--412}, url = {https://dcousin3.github.io/CohensdpLibrary/}, }
Readme and manuals
Cohen’s $d_p$ library: Getting the Cohen’s $d_p$ and its confidence interval in any design
This library computes the Cohen’s $d_p$ and its confidence intervals in any experimental design. In the past, researchers developed distinct versions of standardized mean difference for between and within-subject design. The consequence is that these various estimators could not be compared between each others and more importantly, across experimental design. Lakens (2013) noted the existence of two different measures in within-subject design, and Westfall (2016) noted the existence of at least 5 difference sorts of standardized mean difference. He concluded by making this very important point: all these estimators ARE NOT Cohen’s d measures.
The measure that J. Cohen (Cohen, 1969) created is obtained from the mean difference standardized using the pooled standard deviation. Hence, measures such as $d_a_v$, $d_z$, $d_a$, etc. are not Cohen’s d and more importantly, they cannot be compared! They all return different values because they measure different things. They are not just different, they can be markedly different. As an example, a $d_z$, given the means and standard deviations, can be smaller or larger than the Cohen’s $d$ depending on the amount of correlation across the pairs of data.
This whole mess implies lack of comparability and confusion as to what statistics was actually reported. For that reason, I chose to call the true Cohen’s $d$ with a distinct subscript $p$, as in $d_p$ so that (i) we clearly see the difference (the reader is not left guessing what $d$ represents); (ii) is is clear that the pooled standard deviation and only this statistic was used to standardized the mean difference. Further, by advocating a unique statistic for standardized mean difference, it allows for comparisons across studies, whether they used within-subject or between-subject design.
Why this package?
MBESS
is an excellent package which already computes standardized mean
difference and returns confidence intervals (Kelley, 2022). However, it
does not compute confidence intervals in within-subject design directly.
The Algina and Keselman approximate method can be implemented within
MBESS with some programming (Cousineau & Goulet-Pelletier, 2021). This
package, on the other hand, can be used with any experimental design. It
only requires an argument design
which specifies the type of
experimental design.
The confidence interval in within-subect design was unknown until recently. In recent work (Cousineau, 2022, submitted), its exact expression was found when the population correlation is know and an approximation was proposed when the sample correlation is known, but not the population correlation.
Using CohensdpLibrary
CohensdpLibrary
You can install this library on you computer from CRAN (note the uppercase C and uppercase L)
install.packages("CohensdpLibrary")
or if the library devtools is installed with:
devtools::install_github("dcousin3/CohensdpLibrary")
and before using it:
library(CohensdpLibrary)
The main function is Cohensdp
, which returns the Cohen’s $d_p$ and its
confidence intervals under various designs. For example, this returns
the triplet (lower 95% confidence interval bound, $d_p$, upper 95%
confidence interval bound) given the sample means, the sample standard
deviations, and the correlation
Cohensdp( statistics = list(m1=76, m2=72, n=20, s1=14.8, s2=18.8, r=0.2),
design = "within",
method = "adjustedlambdaprime"
)
## [1] -0.3422415 0.2364258 0.8025925
You get a more readable output with summarize
, e.g.,
summarize(Cohensdp( statistics = list(m1=76, m2=72, n=20, s1=14.8, s2=18.8, r=0.2),
design = "within",
method = "adjustedlambdaprime"
))
## Cohen's dp = 0.236
## 95.0% Confidence interval = [-0.342, 0.803]
The design can be replaced with between
for a between-subject design:
summarize(Cohensdp( statistics = list(m1=76, m2=72, n1=10, n2=10, s1=14.8, s2=18.8),
design = "between")
)
## Cohen's dp = 0.236
## 95.0% Confidence interval = [-0.647, 1.113]
(the statistic r
is removed as there is no correlation in
between-group design, and n
is provided separately for each group,
n1
and n2
).
Finally, it is also possible to get a Cohen’s $d_p$ from a single group
as long as you have an hypothetical mean m0
to compare the sample mean
to, e.g.,
summarize(Cohensdp( statistics = list(m=76, m0=72, n=20, s=14.8),
design = "single")
)
## Cohen's dp = 0.270
## 95.0% Confidence interval = [-0.180, 0.713]
Replace summarize
with explain
for additional information on the
result.
Check the web site https://github.com/dcousin3/CohensdpLibrary for
more. also, help(CohensdpLibrary)
will get you started.
References
Cohen, J. (1969). Statistical power analysis for the behavioral sciences. Academic Press.
Cousineau, D. (2022). The exact distribution of the Cohen’s $d_p$ in repeated-measure designs. PsyArXiv. https://doi.org/10.31234/osf.io/akcnd
Cousineau, D. (submitted). The exact confidence interval of the Cohen’s $d_p$ in repeated-measure designs. The Quantitative Methods for Psychology.
Cousineau, D., & Goulet-Pelletier, J.-C. (2021). A study of confidence intervals for Cohen’s dp in within-subject designs with new proposals. The Quantitative Methods for Psychology, 17, 51–75. https://doi.org/10.20982/tqmp.17.1.p051
Kelley, K. (2022). MBESS: The MBESS R package. Retrieved from https://CRAN.R-project.org/package=MBESS
Lakens, D. (2013). Calculating and reporting effect sizes to facilitate cumulative science: A practical primer for t-tests and ANOVAs. Frontiers in Psychology, 4, 1–12. https://doi.org/10.3389/fpsyg.2013.00863
Westfall, J. (2016). Five different “Cohen’s $d$” statistics for within-subject designs.
Help Manual
Help page | Topics |
---|---|
Cohen's standardized mean difference. | Cohensdp |
explain | explain explain.CohensdpObject |
The unbiased Hedges' standardized mean difference. | Hedgesgp |
hypergeometric functions. | hypergeometric0F1 hypergeometric1F1 hypergeometric2F1 hypergeometrics |
The correction factor J for a standardized mean difference. | J |
The K' or non-central K distribution. | dkprime kprime pkprime qkprime |
Lambda prime or noncentral Lambda distribution. | dlprime lprime plprime qlprime |
Lambda second distribution or the non-central, non-standard, Lambda distribution. | dlsecond lsecond plsecond qlsecond |
prior-informed Lambda second distribution. | dpilsecond pilsecond ppilsecond qpilsecond |
summarize | summarize summarize.CohensdpObject |