Skip to content
Prev 9422 / 20628 Next

Meta-analysis in MCMCglmm

Hi Matt,

You're Z matrix after svd is diagonal with entries equal to the  
square-root of the standard error. i.e:

diag(sqrt(data$SE))

This is incorrect because it would imply the sampling variance is  
equal to the standard error. This is correct:

diag(data$SE)

Note that with idh structure nu=7  is very very informative, because  
it is equivalent to 7 degrees of freedom on a single variance.

Multiplying the effect and the SE by a constant should make little  
difference if the analysis is set up correctly, but because the  
sqrt(SE) was used rather than the SE you should expect large  
differences that do not make sense.

Cheers,

Jarrod








Quoting Matthew Robinson <matthew.r.robinson at sheffield.ac.uk> on Fri,  
4 Jan 2013 10:38:23 +0000: