"rma.uni"
.## S3 method for class 'rma.uni':
influence(model, digits=model$digits, \dots)
## S3 method for class 'infl.rma.uni':
print(x, digits=x$digits, \dots)
## S3 method for class 'rma.uni':
cooks.distance(model, \dots)
## S3 method for class 'rma.uni':
dfbetas(model, \dots)
## S3 method for class 'rma.uni':
hatvalues(model, \dots)
"rma.uni"
."infl.rma.uni"
(for print
)."infl.rma.uni"
. The object is a list containing the following components:print.infl.rma.uni
and plotted with plot.infl.rma.uni
.influence
function calculates the following leave-one-out diagnostics for each study:
rstudent.rma.uni
.
The DFFITS value essentially indicates how many standard deviations the predicted (average) effect for the $i$th study changes after excluding the $i$th study from the model fitting.
Cook's distance can be interpreted as the Mahalanobis distance between the entire set of predicted values once with the $i$th study included and once with the $i$th study excluded from the model fitting.
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 study removed divided by the determinant of the variance-covariance matrix of the parameter estimates based on the complete dataset. A value below 1 therefore indicates that removal of the $i$th study yields more precise estimates of the model coefficients.
The leave-one-out amount of (residual) heterogeneity is the estimated value of $\tau^2$ based on the dataset with the $i$th study removed. Note that 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 study removed.
Finally, the DFBETAS value(s) essentially indicate(s) how many standard deviations the estimated coefficient(s) change(s) after excluding the $i$th study from the model fitting.
A study may be considered to be plot.infl.rma.uni
, rstudent.rma.uni
, weights.rma.uni
### load BCG vaccine data
data(dat.bcg)
### meta-analysis of the log relative risks using a mixed-effects model
### with two moderators (absolute latitude and publication year)
res <- rma(ai=tpos, bi=tneg, ci=cpos, di=cneg, mods = ~ ablat + year,
data=dat.bcg, measure="RR", method="REML")
influence(res)
plot(influence(res))
cooks.distance(res)
dfbetas(res)
hatvalues(res)
Run the code above in your browser using DataLab