
Corrects a vector of Cohen's d values for small-sample bias, as Cohen's d has a slight positive bias.
correct_d_bias(d, n)
Vector of Cohen's d values.
Vector of sample sizes.
Vector of d values corrected for small-sample bias.
The bias correction is estimated as:
where
Schmidt, F. L., & Hunter, J. E. (2015). Methods of meta-analysis: Correcting error and bias in research findings (3rd ed.). Thousand Oaks, CA: SAGE. https://doi.org/10/b6mg. pp. 293<U+2013>295.
# NOT RUN {
correct_d_bias(d = .3, n = 30)
correct_d_bias(d = .3, n = 300)
correct_d_bias(d = .3, n = 3000)
# }
Run the code above in your browser using DataLab