Description Usage Arguments Details Value Note Author(s) References Examples
This function fits the alternative model for bivariate random-effects meta-analysis when the within-study correlations
are unknown. This bivariate model was proposed by Riley et al. (2008) and is similar to the general bivariate
random-effects model (van Houwelingen et al. 2002), but includes an overall correlation parameter rather than
separating the (usually unknown) within- and between-study correlation. As a consequence, the alternative model
is not fully hierarchical, and estimates of additional variation beyond sampling error (psi
) are not
directly equivalent to the between-study variation (tau
) from the general model. This model is particularly
useful when there is large within-study variability, few primary studies are available or the general model
estimates the between-study correlation as 1 or -1.
1 |
X |
data frame containing integer variables |
slab |
Optional vector specifying the label for each study |
optimization |
The optimization method that should be used for minimizing the negative (restricted) log-likelihood function. The default method is an implementation of that of Nelder and Mead (1965), that uses only function values and is robust but relatively slow. Other methods are described in optim. |
control |
A list of control parameters to pass to optim. |
pars |
List with additional arguments. The width of confidence, credibility and prediction intervals is
defined by |
... |
Arguments to be passed on to other functions. See "Details" for more information. |
Parameters are estimated by iteratively maximizing the restriced log-likelihood using the Newton-Raphson procedure.
The results from a univariate random-effects meta-analysis with a method-of-moments estimator are used as starting
values for beta1
, beta2
, psi1
and psi2
in the optim
command. Standard errors for all parameters are obtained
from the inverse Hessian matrix.
The following parameters are estimated by iteratively maximizing the restriced log-likelihood using the Newton-Raphson
procedure: pooled effect size for outcome 1 (beta1
), pooled effect size for outcome 2 (beta2
),
additional variation of beta1
beyond sampling error (psi1
), additional variation of beta2
beyond sampling error (psi2
) and the correlation rho
between psi1
and psi2
.
Although the model can also be used for diagnostic test accuracy data when substantial within-study correlations are expected, assuming zero within-study correlations (i.e. applying Reitsma's approach) is usually justified (Reitsma et al. 2005, Daniels and Hughes 1997, Korn et al. 2005, Thompson et al. 2005, Van Houwelingen et al. 2002).
A logit transformation is applied to the sensitivities ans false positive rates of each study, in order to meet the normality
assumptions. When zero cell counts occur, continuity corrections may be required. The correction value can be specified using
correction
(defaults to 0.5). Further, when the argument correction.control
is set to "all"
(the default) the continuity correction is added to the whole data if only one cell in one study is zero.
If correction.control="single"
the correction is only applied to rows of the data which have a zero.
The following parameters are estimated: logit of sensitivity (beta1
), logit of false positive rate (beta2
),
additional variation of beta1
beyond sampling error (psi1
), additional variation of beta2
beyond
sampling error (psi2
) and the correlation (rho
) between psi1
and psi2
.
An object of the class riley
for which many standard methods are available. A warning message is
casted when the Hessian matrix contains negative eigenvalues, which implies that the identified solution is a
saddle point and thus not optimal.
The overall correlation parameter rho
is transformed during estimation to ensure that corresponding values
remain between -1 and 1. The transformed correlation rhoT
is given as logit((rho+1)/2)
. During optimization,
the starting value for rhoT
is set to 0. The standard error of rho
is derived from rhoT
using
the Delta method. Similarly, the Delta methods is used to derive the standard error of the sensitivity and false
positive rate from beta1
and, respectively, beta2
.
Algorithms for dealing with missing data are currently not implemented, but Bayesian approaches will become available in later versions.
Thomas Debray <thomas.debray@gmail.com>
Korn EL, Albert PS, McShane LM. Assessing surrogates as trial endpoints using mixed models. Statistics in Medicine 2005; 24: 163–182.
Nelder JA, Mead R. A simplex algorithm for function minimization. Computer Journal (1965); 7: 308–313.
Reitsma J, Glas A, Rutjes A, Scholten R, Bossuyt P, Zwinderman A. Bivariate analysis of sensitivity and specificity produces informative summary measures in diagnostic reviews. Journal of Clinical Epidemiology 2005; 58: 982–990.
Riley RD, Thompson JR, Abrams KR. An alternative model for bivariate random-effects meta-analysis when the within-study correlations are unknown. Biostatistics 2008; 9: 172–186.
Thompson JR, Minelli C, Abrams KR, Tobin MD, Riley RD. Meta-analysis of genetic studies using mendelian randomization–a multivariate approach. Statistics in Medicine 2005; 24: 2241–2254.
van Houwelingen HC, Arends LR, Stijnen T. Advanced methods in meta-analysis: multivariate approach and meta-regression. Statistics in Medicine 2002; 21: 589–624.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | data(Scheidler)
data(Daniels)
data(Kertai)
# Meta-analysis of potential surrogate markers data
# The results obtained by Riley (2008) were as follows:
# beta1 = -0.042 (SE = 0.063),
# beta2 = 14.072 (SE = 4.871)
# rho = -0.759
## Not run:
fit1 <- riley(Daniels) #maxit reached, try again with more iterations
## End(Not run)
fit1 <- riley(Daniels, control=list(maxit=10000))
summary(fit1)
# Meta-analysis of prognostic test studies
fit2 <- riley(Kertai)
fit2
# Meta-analysis of computed tomography data
ds <- Scheidler[which(Scheidler$modality==1),]
fit3 <- riley(ds)
fit3
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.