How to Calculate the Effect Size at p=.05

조회 수: 22 (최근 30일)
Johannes Reifenrath
Johannes Reifenrath 2023년 10월 12일
답변: Jeff Miller 2023년 10월 14일
Hello All,
Suppose I have caluclated the effect size for two different measurements (using the computeCohen_d(x1, x2, varargin) toolbox).
Now I want to determine the effect size, at which a measurement-difference becomes significant.
In other words: How to I calculate the effect size at p=.05?
Thanks in advance!
  댓글 수: 2
Jeff Miller
Jeff Miller 2023년 10월 12일
'independent' or 'paired' ?
Johannes Reifenrath
Johannes Reifenrath 2023년 10월 13일
Thanks for asking.
Independent.

댓글을 달려면 로그인하십시오.

채택된 답변

Jeff Miller
Jeff Miller 2023년 10월 14일
You can get an answer by computing a confidence interval for the Cohen's d. Specifically, at p=0.05, one end of the confidence interval for that d is right at 0 (well, epsilon above 0, I suppose). In the independent case, the half width (HW) of a 95% confidence interval for d is approximately the following (e.g., Bird, 2023, Eq. 2):
HW = tinv(0.975,n1+n2-2) * sqrt(1/n1 + 1/n2)
where n1 and n2 are the sizes of the two independent samples. So, plug in your sample sizes and the HW that comes out should be the d value that would be just significant at p=0.05.
Apparently this is only "approximately" the HW because the standard error of the d value depends on the true d value, but the references in Bird suggest that the approximation is pretty good unless the true d is greater than 1-1.5.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by