fitted.rma | R Documentation |
Function to compute the fitted values for objects of class "rma"
.
## S3 method for class 'rma'
fitted(object, ...)
object |
an object of class |
... |
other arguments. |
A vector with the fitted values.
The predict
function also provides standard errors and confidence intervals for the fitted values. Best linear unbiased predictions (BLUPs) that combine the fitted values based on the fixed effects and the estimated contributions of the random effects can be obtained with blup
(only for objects of class "rma.uni"
).
For objects not involving moderators, the fitted values are all identical to the estimated value of the model intercept.
Wolfgang Viechtbauer wvb@metafor-project.org https://www.metafor-project.org
Viechtbauer, W. (2010). Conducting meta-analyses in R with the metafor package. Journal of Statistical Software, 36(3), 1–48. https://doi.org/10.18637/jss.v036.i03
predict
for a function to computed predicted values and blup
for a function to compute BLUPs that combine the fitted values and predicted random effects.
### calculate log risk ratios and corresponding sampling variances
dat <- escalc(measure="RR", ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg)
### fit mixed-effects model with absolute latitude and publication year as moderators
res <- rma(yi, vi, mods = ~ ablat + year, data=dat)
### compute the fitted values
fitted(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.