"rma.uni"
.## S3 method for class 'rma.uni':
influence(model, digits=model$digits, ...)
"rma.uni"
."rma.uni.infl"
. The object is a list containing the following components:print.rma.uni.infl
and plotted with plot.rma.uni.infl
.rstudent.rma.uni
.
For the meta-analytic models underlying the rma.uni
function, the DFFITS value for the $i^{th}$ case is here defined as the difference between the predicted value based on the fitted model using the complete dataset and the predicted value based on the fitted model using the dataset with the $i^{th}$ case removed, divided by the standard error of the predicted value based on the fitted model using the dataset with the $i^{th}$ case removed.
Cook's distance is here defined as $(\hat{\beta}-\hat{\beta}_{(i)})' \hat{\Sigma}^{-1} (\hat{\beta}-\hat{\beta}_{(i)})$, where $\hat{\beta}$ is the vector of parameter estimates based on the complete dataset, $\hat{\beta}_{(i)}$ is the vector of parameter estimates based on the dataset with the $i^{th}$ case removed, and $\hat{\Sigma}$ is the variance-covariance matrix of the parameter estimates based on the full dataset.
The covariance ratio is defined as the determinant of the variance-covariance matrix of the parameter estimates based on the dataset with the $i^{th}$ case removed divided by the determinant of the variance-covariance matrix of the parameter estimates based on the complete dataset.
The leave-one-out amount of (residual) heterogeneity is the estimated value of $\tau^2$ based on the dataset with the $i^{th}$ case removed. This is always equal to 0
for fixed-effects models.
Similarly, the leave-one-out test statistic for the test of (residual) heterogeneity is the value of the test statistic of the test for (residual) heterogeneity calculated based on the dataset with the $i^{th}$ case removed.
Finally, the DFBETAS values for the $i^{th}$ case are defined as the difference between the parameter estimates based on the complete dataset and the parameter estimates based on the dataset with the $i^{th}$ case removed, divided by the standard error of the parameter estimates based on the dataset with the $i^{th}$ case removed.print.rma.uni.infl
, plot.rma.uni.infl
, rstudent.rma.uni
, hatvalues.rma.uni
### load BCG vaccine data
data(dat.bcg)
### meta-analysis of the log risk rates using a mixed-effects model
### with two moderators (absolute latitude and publication year)
res <- rma(ai=tpos, bi=tneg, ci=cpos, di=cneg, mods=cbind(ablat, year),
data=dat.bcg, measure="RR", method="REML")
influence(res)
Run the code above in your browser using DataLab