Skip to content
Prev 1825 / 5636 Next

[R-meta] Meta analysis on means and standard deviation

Thank you very much already for your quick answer. 

To clarify our question, we want to study 2 outcomes : the mean and the standard deviation. 
In the data frame table, we have the variance of the raw measurements. 

1: Regarding the mean, we obtained a mean of our means (and its Standard error) thanks to the function rma.uni
meta_mean = rma.uni(yi = M, vi = variance, weights = 1/variance, method="REML", data=table). 

To obtain the standard deviation of the meta_mean, is it correct to use this code ? : 
meta_meanSD  = table$se*sqrt(table$QE)

2: Regarding the variance of the raw measurements, is it correct to use this function to obtain the value of variance ? 
meta_SD = rma.uni(yi = variance,  vi = ? variance-of-variance ?, weights = 1/? variance-of-variance ?, method="REML", data=table)

Thank you again. 

Best, 

Manon