이 유형의 데이터를 종속 효과 크기라고합니다. 의존성을 다루기 위해 몇 가지 접근법이 사용될 수 있습니다. 3 단계 메타 분석을 사용하는 것이 좋습니다 (Cheung, 2014; Konstantopoulos, 2011; Van den Noortgate et al. 2013). 변형을 수준 2 및 수준 3 이질성으로 분해합니다. 귀하의 예에서, 수준 2 및 수준 3 이질성은 하위 척도 및 연구로 인한 이질성을 나타냅니다. R로 구현 된 metaSEM 패키지 ( http://courses.nus.edu.sg/course/psycwlm/Internet/metaSEM/ )는 3 단계 메타 분석을 수행하는 기능을 제공합니다. 예를 들어
## Your data
d <- round(rnorm(5,5,1),2)
sd <- round(rnorm(5,1,0.1),2)
study <- c(1,2,3,3,3)
subscore <- c(1,1,1,2,3)
my_data <- as.data.frame(cbind(study, subscore, d, sd))
## Load the library with the data set
library(metaSEM)
summary( meta3(y=d, v=sd^2, cluster=study, data=my_data) )
출력은 다음과 같습니다.
Running Meta analysis with ML
Call:
meta3(y = d, v = sd^2, cluster = study, data = my_data)
95% confidence intervals: z statistic approximation
Coefficients:
Estimate Std.Error lbound ubound z value Pr(>|z|)
Intercept 4.9878e+00 4.2839e-01 4.1482e+00 5.8275e+00 11.643 < 2.2e-16 ***
Tau2_2 1.0000e-10 NA NA NA NA NA
Tau2_3 1.0000e-10 NA NA NA NA NA
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Q statistic on homogeneity of effect sizes: 0.1856967
Degrees of freedom of the Q statistic: 4
P value of the Q statistic: 0.9959473
Heterogeneity indices (based on the estimated Tau2):
Estimate
I2_2 (Typical v: Q statistic) 0
I2_3 (Typical v: Q statistic) 0
Number of studies (or clusters): 3
Number of observed statistics: 5
Number of estimated parameters: 3
Degrees of freedom: 2
-2 log likelihood: 8.989807
OpenMx status1: 1 ("0" and "1": considered fine; other values indicate problems)
이 예에서, 수준 2 및 수준 3 이종성의 추정치는 0에 가깝습니다. 수준 2 및 수준 3 공변량도 이질성을 모델링하기 위해 포함될 수 있습니다. 3 단계 메타 분석에 대한 추가 예는 http://courses.nus.edu.sg/course/psycwlm/Internet/metaSEM/3level.html 에서 확인할 수 있습니다 .
참고 문헌
청, MW-L. (2014). 3 단계 메타 분석을 통한 모델링 종속 효과 크기 : 구조 방정식 모델링 방법 . 심리학 적 방법 , 19 (2), 211-29. 도 : 10.1037 / a0032968.
Konstantopoulos, S. (2011). 3 단계 메타 분석에서 고정 효과 및 분산 성분 추정. 연구 합성 방법 , 2 (1), 61–76. 도 : 10.1002 / jrsm.35
Van den Noortgate, W., López-López, JA, Marín-Martínez, F. 및 Sánchez-Meca, J. (2013). 종속 효과 크기의 3 단계 메타 분석. 행동 연구 방법 , 45 (2), 576–594. doi : 10.3758 / s13428-012-0261-6