meta <-
function (means, ses)
{
ws <- 1/ses^2
beta <- sum(ws * means)/sum(ws)
se <- sqrt(1/sum(ws))
return(list(beta = beta, se = se, p = pchisq((beta/se)^2,
1, low = FALSE)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.