This type of data is known as the dependent effect sizes. Several approaches can be used to handle the dependence. I would recommend the use of three-level meta-analysis (Cheung, 2014; Konstantopoulos, 2011; Van den Noortgate et al. 2013). It decomposes the variation to level 2 and level 3 heterogeneity. In your example, the level 2 and level 3 heterogeneity refer to the heterogeneity due to subscales and studies. The metaSEM package (http://courses.nus.edu.sg/course/psycwlm/Internet/metaSEM/) implemented in R provides functions to conduct three-level meta-analysis. For example,
## 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) )
The output is:
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)
In this example, the estimates of the level 2 and level 3 heterogeneity are close to 0. Level 2 and level 3 covariates may also be included to model the heterogeneity. More examples on the three-level meta-analysis are available at http://courses.nus.edu.sg/course/psycwlm/Internet/metaSEM/3level.html
References
Cheung, M. W.-L. (2014). Modeling dependent effect sizes with three-level meta-analyses: A structural equation modeling approach. Psychological Methods, 19(2), 211-29. doi: 10.1037/a0032968.
Konstantopoulos, S. (2011). Fixed effects and variance components estimation in three-level meta-analysis. Research Synthesis Methods, 2(1), 61–76. doi:10.1002/jrsm.35
Van den Noortgate, W., López-López, J. A., Marín-Martínez, F., & Sánchez-Meca, J. (2013). Three-level meta-analysis of dependent effect sizes. Behavior Research Methods, 45(2), 576–594. doi:10.3758/s13428-012-0261-6