Title: | Patient-Centered Network Meta-Analysis |
---|---|
Description: | Performs Bayesian arm-based network meta-analysis for datasets with binary, continuous, and count outcomes (Zhang et al., 2014 <doi:10.1177/1740774513498322>; Lin et al., 2017 <doi:10.18637/jss.v080.i05>). |
Authors: | Lifeng Lin [aut, cre] , Jing Zhang [aut], Haitao Chu [aut] |
Maintainer: | Lifeng Lin <[email protected]> |
License: | GPL (>= 2) |
Version: | 2.8 |
Built: | 2024-11-16 06:37:52 UTC |
Source: | CRAN |
Provides functions to perform Bayesian arm-based network meta-analysis for datasets with binary, continuous, and count outcomes.
Much effort in the current literature of network meta-analysis has been devoted to contrast-based methods, which focus on modeling the relative treatment effects, such as log odds ratios. In some situations, patient-centered treatment-specific parameters, such as absolute risks, may be preferred. For example, when the outcome is binary, consider two scenarios comparing treatments A and B according to one-year survival rates: (i) vs.
and (ii)
vs.
. Both scenarios yield an odds ratio of 4.0, but patients would prefer treatment A in scenario (i) more strongly than in scenario (ii). The contrast-based network meta-analysis requires external data sources or separate modeling to estimate treatment-specific parameters.
Alternatively, the arm-based network meta-analysis focuses on estimating treatment-specific parameters, and relative effects can be subsequently obtained. The arm-based models for binary outcomes are discussed in Salanti et al. (2008) and Zhang et al. (2014).
This package provides user-friendly functions for the arm-based network meta-analysis. The function nma.ab.bin
uses the model in Zhang et al. (2014) for binary outcomes; it provides estimates for the absolute risk (AR), risk ratio (RR), risk difference (RD), odds ratio (OR), log RR, log OR, as well as rank probabilities. This package also handles continuous outcomes and count data. A detailed instruction of using this package is provided in Lin et al. (2017).
Parameter estimation in the arm-based Bayesian hierarchical models is performed through JAGS. Note that this package does not include a copy of JAGS library, so users must install JAGS separately. Please refer to the JAGS home page at http://mcmc-jags.sourceforge.net/ for instructions on downloading and installing JAGS.
Lifeng Lin, Jing Zhang, and Haitao Chu
Maintainer: Lifeng Lin <[email protected]>
Dias S, Sutton AJ, Ades AE, Welton NJ (2013). "Evidence synthesis for decision making 2: a generalized linear modeling framework for pairwise and network meta-analysis of randomized controlled trials." Medical Decision Making, 33(5), 607–617. <doi:10.1177/0272989X12458724>
Lin L, Zhang J, Hodges JS, Chu H (2017). "Performing arm-based network meta-analysis in R with the pcnetmeta package." Journal of Statistical Software, 80(5), 1–25. <doi:10.18637/jss.v080.i05>
Lu G, Ades AE (2004). "Combination of direct and indirect evidence in mixed treatment comparisons." Statistics in Medicine, 23(20), 3105–3124. <doi:10.1002/sim.1875>
Salanti G, Higgins JPT, Ades AE, Ioannidis JPA (2008). "Evaluation of networks of randomized trials." Statistical Methods in Medical Research 17(3), 279–301. <doi:10.1177/0962280207080643>
Zhang J, Carlin BP, Neaton JD, Soon GG, Nie L, Kane R, Virnig BA, Chu H (2014). "Network meta-analysis of randomized clinical trials: Reporting the proper summaries." Clinical Trials, 11(2), 246–262. <doi:10.1177/1740774513498322>
Generates a plot of 95% credible intervals (CIs) for the treatment-specific effect sizes.
absolute.plot(nma.obj, alphabetic = TRUE, digits = 2, save = TRUE, width = 5, height, network.name)
absolute.plot(nma.obj, alphabetic = TRUE, digits = 2, save = TRUE, width = 5, height, network.name)
nma.obj |
a list object obtained by function |
alphabetic |
a logical value indicating whether to sort the CIs according to treatment names alphabetically. The default is |
digits |
an integer specifying the number of decimal places to be used for the point estimates and 95% CIs. The default is 2. |
save |
a logical value indicating whether to save the plot as a .pdf file. If |
width |
a positive number specifying the plot width. The default is 5. |
height |
a positive number specifying the plot height. The default is the treatment number minus 1. |
network.name |
a character string indicating the network name to be used for the produced .pdf file name. |
None.
data("smoke") # increase n.iter to reach convergence set.seed(1234) nma.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, trtname = c("NC", "SH", "IC", "GC"), param= "AR", model = "het_cor", n.adapt = 1000, n.iter = 100, n.chains = 1) absolute.plot(nma.out, save = FALSE) #absolute.plot(nma.out) absolute.plot(nma.out, alphabetic = FALSE, save = FALSE)
data("smoke") # increase n.iter to reach convergence set.seed(1234) nma.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, trtname = c("NC", "SH", "IC", "GC"), param= "AR", model = "het_cor", n.adapt = 1000, n.iter = 100, n.chains = 1) absolute.plot(nma.out, save = FALSE) #absolute.plot(nma.out) absolute.plot(nma.out, alphabetic = FALSE, save = FALSE)
Generates a plot that shows 95% credible intervals (CIs) for relative effect measures.
contrast.plot(nma.obj, effect.measure, reference, digits = 2, save = TRUE, width = 5, height, network.name)
contrast.plot(nma.obj, effect.measure, reference, digits = 2, save = TRUE, width = 5, height, network.name)
nma.obj |
a list object obtained by function |
effect.measure |
a character string specifying the relative effect measure to be shown in the contrast plot. If |
reference |
a character string specifying the reference treatment name to be compared against. |
digits |
an integer specifying the number of decimal places to be used for the point estimates and 95% CIs. The default is 2. |
save |
a logical value indicating whether to save the plot as a .pdf file. If |
width |
a positive number specifying the plot width. The default is 5. |
height |
a positive number specifying the plot height. The default is the treatment number minus 1. |
network.name |
a character string indicating the network name to be used for the produced .pdf file name. |
None.
data("smoke") # increase n.iter to reach convergence set.seed(1234) nma.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, trtname = c("NC", "SH", "IC", "GC"), param = "LOR", model = "het_cor", n.adapt = 1000, n.iter = 100, n.chains = 1) contrast.plot(nma.out, save = FALSE) #contrast.plot(nma.out)
data("smoke") # increase n.iter to reach convergence set.seed(1234) nma.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, trtname = c("NC", "SH", "IC", "GC"), param = "LOR", model = "het_cor", n.adapt = 1000, n.iter = 100, n.chains = 1) contrast.plot(nma.out, save = FALSE) #contrast.plot(nma.out)
An example of network meta-analysis for binary outcomes with follow-up times reported.
data("diabetes")
data("diabetes")
A data frame containing 22 studies which compare a total of 6 treatments. The outcome is binary; the mean follow-up time in each study is collected.
s.id
a numeric vector of study IDs.
folup
a numeric vector of follow-up time (in years) for each study.
t.id
a numeric vector of treatment IDs.
r
a numeric vector of the total mortality in each treatment group in each study.
n
a numeric vector of the total number of participants in each treatment group in each study.
This network meta-analysis is reported by Elliott and Meyer (2007) to assess the effects of anti-hypertensive agents on incident diabetes. Treatment IDs represent 1) diuretic; 2) placebo; 3) -blocker; 4) calcium-channel blocker (CCB); 5) angiotensin-converting-enzyme (ACE) inhibitor; and 6) angiotensin-receptor blocker (ARB).
Elliott WJ, Meyer PM (2007). "Incident diabetes in clinical trials of antihypertensive drugs: a network meta-analysis." Lancet, 369(9557), 201–207. <doi:10.1016/S0140-6736(07)60108-1>
An example of network meta-analysis for binary outcomes with exposure times in person-years reported.
data("dietaryfat")
data("dietaryfat")
A data frame containing 10 studies which compare 2 treatments. The total number of person-years at risk are reported for each treatment group in each study.
s.id
a numeric vector of study IDs.
t.id
a numeric vector of treatment IDs.
py
a numeric vector of the total person-years in each treatment group in each study.
r
a numeric vector of the total mortality in each treatment group in each study.
n
a numeric vector of the total number of participants in each treatment group in each study.
This network meta-analysis is reported by Hooper et al. (2000) to assess the effects of change in dietary fats on cardiovascular mortality. Treatment 1 is a control diet and treatment 2 is a reduced fat diet. Originally, study 2 compares three treatments, which include treatments 1 and 2, and another diet. Here, we treat these two different types of diet as the same treatment, but keep the treatment arms separate.
Hooper L, Summerbell CD, Higgins JPT, Thompson RL, Clements G, Capps N, Davey Smith G, Riemersma R, Ebrahim S (2000). "Reduced or modified dietary fat for preventing cardiovascular disease." The Cochrane Database of Systematic Reviews, 2, Art. No.: CD002137. <doi:10.1002/14651858.CD002137>
Performs the arm-based network meta-analysis proposed by Zhang et al. (2014), including estimating the absolute risk (AR), risk difference (RD), odds ratio (OR), risk ratio (RR), log odds ratio (LOR), and log risk ratio (LRR).
nma.ab.bin(s.id, t.id, event.n, total.n, data, trtname, param = c("AR", "LOR", "LRR", "RD", "rank.prob"), model = "het_cor", link = "probit", prior.type, a = 0.001, b = 0.001, c = 10, higher.better = FALSE, digits = 4, n.adapt = 5000, n.iter = 100000, n.burnin = floor(n.iter/2), n.chains = 3, n.thin = max(1, floor((n.iter - n.burnin)/100000)), conv.diag = FALSE, trace = NULL, dic = FALSE, postdens = FALSE, mcmc.samples = FALSE)
nma.ab.bin(s.id, t.id, event.n, total.n, data, trtname, param = c("AR", "LOR", "LRR", "RD", "rank.prob"), model = "het_cor", link = "probit", prior.type, a = 0.001, b = 0.001, c = 10, higher.better = FALSE, digits = 4, n.adapt = 5000, n.iter = 100000, n.burnin = floor(n.iter/2), n.chains = 3, n.thin = max(1, floor((n.iter - n.burnin)/100000)), conv.diag = FALSE, trace = NULL, dic = FALSE, postdens = FALSE, mcmc.samples = FALSE)
s.id |
a numeric or character vector specifying study ID, or the corresponding column name in the argument |
t.id |
a numeric or character vector specifying treatment ID, or the corresponding column name in the argument |
event.n |
a numeric vector of non-negative integers, specifying event number for a certain treatment in the corresponding study, or the corresponding column name in the argument |
total.n |
a numeric vector of positive integers, specifying total number of participants for a certain treatment in the corresponding study, or the corresponding column name in the argument |
data |
an optional data frame containing the dataset for network meta-analysis. If |
trtname |
a vector of character strings specifying the treatment names for the corresponding treatment IDs according to their order in |
param |
a vector of character strings specifying the effect measures to be estimated. The default includes |
model |
a character string specifying which Bayesian hierarchical model to be applied in the arm-based network meta-analysis. This argument can be set as |
link |
a character string specifying the link function in the Bayesian hierarchical model for binary outcomes. It can be either |
prior.type |
prior distribution of variances and/or covariances of random effects. If |
a , b
|
positive numbers, specifying the shape and scale parameters of inverse gamma priors for variance(s) of random effects if using |
c |
positive number, specifying the upper bound of uniform prior for standard deviation(s) of random effects if using |
higher.better |
an optional logical value which needs to be specified when estimating the treatment rank probabilities (i.e., |
digits |
a positive integer specifying the digits after the decimal point for the effect measure estimates. The default is 4. |
n.adapt |
the number of iterations for adaptation in Markov chain Monte Carlo (MCMC) algorithm. The default is 5,000. If a warning "adaptation incomplete" appears, users may increase |
n.iter |
the total number of iterations in each MCMC chain. The default is 100,000. |
n.burnin |
the number of iterations for burn-in period. The default is |
n.chains |
the number of MCMC chains. The default is 3. |
n.thin |
a positive integer specifying the thinning rate. The default is the thinning rate which yields no more than 100,000 iterations remaining in each chain. |
conv.diag |
a logical value indicating whether to perform MCMC convergence diagnostic. The default is |
trace |
a vector of character strings of effect measures. The character strings should be selected from those specified in |
dic |
a logical value indicating whether to calculate the deviance information criterion (DIC) value. The default is |
postdens |
a logical value indicating whether to draw the posterior density plots for treatment-specific absolue risks (ARs). If |
mcmc.samples |
a logical value indicating whether to save MCMC posterior samples in the output object. The default is |
Suppose that a network meta-analysis collects studies on
treatments, where each study investigates a subset of the
treatments. Label the studies from
to
and the treatments from
to
. Let
be the subset of the
treatments that is compared in the
th study. Also, in the
th study, let
be the number of participants allocated to treatment group
(
), and
be the number of events. The arm-based model is constructed as (Zhang et al. 2014):
where is the standard normal cumulative distribution function, and
is a
positive definite covariance matrix. The
's are treatment-specific fixed effects, and the random effects
are correlated within each study with the covariance matrix
. The marginal absolute risk of treatment
is
; other effect measures are calculated based on these absolute risks.
An unstructured covariance matrix in the model above corresponds to
model
= "het_cor"
. The inverse-Wishart prior can be assigned to . Alternatively, using the separation strategy by Cholesky decomposition (
prior.type
= "chol"
), uniform priors are assigned to the standard deviations in
and non-informative priors are assigned to the correlation components (Barnard et al., 2000; Lu and Ades, 2009; Wei and Higgins, 2013; Lin and Chu, 2018). Denote
as the standard deviation of
and
, then the correlation matrix is
. If we assume that all of the off-diagonal elements in
are equal, say to
, then this model corresponds to
model
= "het_eqcor"
. If we further assume the homogeneity of variances of the random effects, that is, for
, then the model is
"hom_eqcor"
. In addition, for the models "hom_eqcor"
and "het_eqcor"
, setting prior.type
as "invgamma"
implies using inverse-gamma priors with shape and scale parameters, and
, for
or
, and
"unif"
implies uniform priors for
or
.
In addition to the probit link as used in the model above, one may also use the logit link (Chu et al., 2012), which is adopted more commonly in contrast-based models. Using the logit link, represents the overall median log odds across studies; thus,
is the overall median log odds ratio between treatments
and
,
is the overall median odds ratio, and they futher yield the rank probabilities. The contrast-based models usually report such overall median (log) odds ratios, rather than the marginal effect measures obtained from the arm-based models. When the argument
link
is "logit"
, users can additionally specify "LOR.med"
, "OR.med"
, and "rank.prob.med"
to obtain these results based on the overall median odds ratios.
nma.ab.bin
returns a list with estimates of effect measures specified in param
. If the argument dic
= TRUE
, the deviance information criterion (DIC) statistic will be returned in the output list. In addition, if conv.diag
= TRUE
, a .txt file containing the point estimates of the potential scale reduction factor and their upper confidence limits by Gelman and Rubin (1992) will be saved in users' current working directory. If postdens
= TRUE
, the posterior densities of treatment-specific absolute risks will be saved as a .pdf file. If trace
is specified, the trace plots are saved as .png files.
If there exists a treatment that has no event in all studies, errors may occur. To avoid such errors, users may set the zero event as a small positive number (say 0.5).
Earlier versions (< 4.0.0) of JAGS do not guarantee exact reproducibility of the results. We recommend users to install the latest version (>= 4.0.0) of JAGS so that exact reproducibility can be ensured by specifying certain seeds.
Barnard J, McCulloch R, Meng XL (2000). "Modeling covariance matrices in terms of standard deviations and correlations, with application to shrinkage." Statistica Sinica, 10(4), 1281–1311.
Chu H, Nie L, Chen Y, Huang Y, Sun W (2012). "Bivariate random effects models for meta-analysis of comparative studies with binary outcomes: methods for the absolute risk difference and relative risk." Statistical Methods in Medical Research, 21(6), 621–633. <doi:10.1177/0962280210393712>
Gelman A, Rubin DB (1992). "Inference from iterative simulation using multiple sequences." Statistical Science, 7(4), 457–472. <doi:10.1214/ss/1177011136>
Lin L, Chu H (2018). "Bayesian multivariate meta-analysis of multiple factors." Research Synthesis Methods, 9(2), 261–272. <doi:10.1002/jrsm.1293>
Lin L, Zhang J, Hodges JS, Chu H (2017). "Performing arm-based network meta-analysis in R with the pcnetmeta package." Journal of Statistical Software, 80(5), 1–25. <doi:10.18637/jss.v080.i05>
Lu G, Ades AE (2004). "Combination of direct and indirect evidence in mixed treatment comparisons." Statistics in Medicine, 23(20), 3105–3124. <doi:10.1002/sim.1875>
Lu G, Ades AE (2009). "Modeling between-trial variance structure in mixed treatment comparisons." Biostatistics, 10(4), 792–805. <doi:10.1093/biostatistics/kxp032>
Spiegelhalter DJ, Best NG, Carlin BP, Van Der Linde A (2002). "Bayesian measures of model complexity and fit." Journal of the Royal Statistical Society, Series B (Statistical Methodology), 64(4), 583–639. <doi:10.1111/1467-9868.00353>
Wei Y, Higgins JPT (2013). "Bayesian multivariate meta-analysis with multiple outcomes." Statistics in Medicine, 32(17), 2911–2934. <doi:10.1002/sim.5745>
Zhang J, Carlin BP, Neaton JD, Soon GG, Nie L, Kane R, Virnig BA, Chu H (2014). "Network meta-analysis of randomized clinical trials: Reporting the proper summaries." Clinical Trials, 11(2), 246–262. <doi:10.1177/1740774513498322>
nma.ab.cont
, nma.ab.py
, nma.ab.followup
data("smoke") # For the smoke cessation data, # higher event rate indicates better treatment # use the model = "het_cor" #set.seed(1234) #het.cor.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, # trtname = c("NC", "SH", "IC", "GC"), param = c("AR", "OR", "RR", "LOR", # "LRR", "RD", "rank.prob"), model = "het_cor", higher.better = TRUE, # n.iter = 200000, n.thin = 1, conv.diag = TRUE, dic = TRUE, # trace = c("AR", "LOR"), postdens = TRUE) # use the model = "hom_eqcor" # increase n.iter to reach convergence set.seed(123) hom.eqcor.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, param = c("AR", "LRR"), model = "hom_eqcor", prior.type = "unif", c = 10, higher.better = TRUE, n.adapt = 1000, n.iter = 100, n.chains = 1) # use the logit link set.seed(1234) hom.eqcor.out2 <- nma.ab.bin(s.id, t.id, r, n, data = smoke, param = c("AR", "OR", "OR.med", "rank.prob", "rank.prob.med"), model = "hom_eqcor", link = "logit", prior.type = "unif", c = 10, higher.better = TRUE, n.adapt = 1000, n.iter = 100, n.chains = 1)
data("smoke") # For the smoke cessation data, # higher event rate indicates better treatment # use the model = "het_cor" #set.seed(1234) #het.cor.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, # trtname = c("NC", "SH", "IC", "GC"), param = c("AR", "OR", "RR", "LOR", # "LRR", "RD", "rank.prob"), model = "het_cor", higher.better = TRUE, # n.iter = 200000, n.thin = 1, conv.diag = TRUE, dic = TRUE, # trace = c("AR", "LOR"), postdens = TRUE) # use the model = "hom_eqcor" # increase n.iter to reach convergence set.seed(123) hom.eqcor.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, param = c("AR", "LRR"), model = "hom_eqcor", prior.type = "unif", c = 10, higher.better = TRUE, n.adapt = 1000, n.iter = 100, n.chains = 1) # use the logit link set.seed(1234) hom.eqcor.out2 <- nma.ab.bin(s.id, t.id, r, n, data = smoke, param = c("AR", "OR", "OR.med", "rank.prob", "rank.prob.med"), model = "hom_eqcor", link = "logit", prior.type = "unif", c = 10, higher.better = TRUE, n.adapt = 1000, n.iter = 100, n.chains = 1)
Performs the arm-based network meta-analysis for continuous outcomes, which estimates the treatment-specific effects and effect differences.
nma.ab.cont(s.id, t.id, mean, sd, total.n, data, trtname, param = c("mu", "diff", "rank.prob"),model = "het_cor", prior.type, a = 0.001, b = 0.001, c = 10, higher.better = FALSE, digits = 4, n.adapt = 5000, n.iter = 100000, n.burnin = floor(n.iter/2), n.chains = 3, n.thin = max(1, floor((n.iter - n.burnin)/100000)), conv.diag = FALSE, trace = NULL, dic = FALSE, postdens = FALSE, mcmc.samples = FALSE)
nma.ab.cont(s.id, t.id, mean, sd, total.n, data, trtname, param = c("mu", "diff", "rank.prob"),model = "het_cor", prior.type, a = 0.001, b = 0.001, c = 10, higher.better = FALSE, digits = 4, n.adapt = 5000, n.iter = 100000, n.burnin = floor(n.iter/2), n.chains = 3, n.thin = max(1, floor((n.iter - n.burnin)/100000)), conv.diag = FALSE, trace = NULL, dic = FALSE, postdens = FALSE, mcmc.samples = FALSE)
s.id |
a numeric or character vector specifying study ID, or the corresponding column name in the argument |
t.id |
a numeric or character vector specifying treatment ID, or the corresponding column name in the argument |
mean |
a numeric vector specifying the sample mean of the continuous outcomes for a certain treatment group in the corresponding study, or the corresponding column name in the argument |
sd |
a numeric vector specifying the sample standard deviation of the continuous outcomes for a certain treatment group in the corresponding study, or the corresponding column name in the argument |
total.n |
a numeric vector of positive integers, indicating total number of participants for a certain treatment in the corresponding study, or the corresponding column name in the argument |
data |
an optional data frame containing the dataset of the network meta-analysis. If |
trtname |
a vector of character strings specifying the treatment names for the corresponding treatment IDs according to their order in |
param |
a vector of character strings specifying the effect measures to be estimated. The default includes treatment-specific effects ( |
model |
a character string specifying which Bayesian hierarchical model to be applied in the arm-based network meta-analysis. This argument can be set as |
prior.type |
prior distribution of variances and/or covariances of random effects. If |
a , b
|
positive numbers, specifying the shape and scale parameters of inverse gamma priors for variance(s) of random effects if using |
c |
positive number, specifying the upper bound of uniform prior for standard deviation(s) of random effects if using |
higher.better |
an optional logical value which needs to be specified when estimating the treatment rank probabilities (i.e., |
digits |
a positive integer specifying the digits after the decimal point for the effect measure estimates. The default is 4. |
n.adapt |
the number of iterations for adaptation in Markov chain Monte Carlo (MCMC) algorithm. The default is 5,000. If a warning "adaptation incomplete" appears, users may increase |
n.iter |
the total number of iterations in each MCMC chain. The default is 100,000. |
n.burnin |
the number of iterations for burn-in period. The default is |
n.chains |
the number of MCMC chains. The default is 3. |
n.thin |
a positive integer specifying the thinning rate. The default is the thinning rate which yields no more than 100,000 iterations remaining in each chain. |
conv.diag |
a logical value indicating whether to perform MCMC convergence diagnostic. The default is |
trace |
a vector of character strings of effect measures. The character strings should be selected from those specified in |
dic |
a logical value indicating whether to calculate the deviance information criterion (DIC) value. The default is |
postdens |
a logical value indicating whether to draw the posterior density plots for treatment-specific effects. If |
mcmc.samples |
a logical value indicating whether to save MCMC posterior samples in the output object. The default is |
Suppose that a network meta-analysis collects studies on
treatments, where each study investigates a subset of the
treatments with continuous outcomes. Label the studies from
to
and the treatments from
to
. Let
be the subset of the
treatments that is compared in the
th study. Also, in the
th study, let
be the number of participants allocated to treatment group
(
), and
and
be the sample mean and sample standard deviation of the continuous outcome measures. The arm-based model is constructed as:
where is a
positive definite correlation matrix. The
's are treatment-specific fixed effects, and the random effects
are correlated within each study with the covariance matrix
.
An unstructured covariance matrix in the model above corresponds to
model
= "het_cor"
. The inverse-Wishart prior can be assigned to . Alternatively, using the separation strategy by Cholesky decomposition (
prior.type
= "chol"
), uniform priors are assigned to the standard deviations in
and non-informative priors are assigned to the correlation components (Barnard et al., 2000; Lu and Ades, 2009; Wei and Higgins, 2013; Lin and Chu, 2018). Denote
as the standard deviation of
and
, then the correlation matrix is
. If we assume that all of the off-diagonal elements in
are equal, say to
, then this model corresponds to
model
= "het_eqcor"
. If we further assume the homogeneity of variances of the random effects, that is, for
, then the model is
"hom_eqcor"
. In addition, for the models "hom_eqcor"
and "het_eqcor"
, setting prior.type
as "invgamma"
implies using inverse-gamma priors with shape and scale parameters, and
, for
or
, and
"unif"
implies uniform priors for
or
.
nma.ab.cont
returns a list with estimates of effect measures specified in param
. If the argument dic
= TRUE
, the deviance information criterion (DIC) statistic will be returned in the output list. In addition, if conv.diag
= TRUE
, a .txt file containing the point estimates of the potential scale reduction factor and their upper confidence limits by Gelman and Rubin (1992) will be saved in users' current working directory. If postdens
= TRUE
, the posterior densities of treatment-specific absolute risks will be saved as a .pdf file. If trace
is specified, the trace plots are saved as .png files.
Earlier versions (< 4.0.0) of JAGS do not guarantee exact reproducibility of the results. We recommend users to install the latest version (>= 4.0.0) of JAGS so that exact reproducibility can be ensured by specifying certain seeds.
Barnard J, McCulloch R, Meng XL (2000). "Modeling covariance matrices in terms of standard deviations and correlations, with application to shrinkage." Statistica Sinica, 10(4), 1281–1311.
Dias S, Sutton AJ, Ades AE, Welton NJ (2013). "Evidence synthesis for decision making 2: a generalized linear modeling framework for pairwise and network meta-analysis of randomized controlled trials." Medical Decision Making, 33(5), 607–617. <doi:10.1177/0272989X12458724>
Gelman A, Rubin DB (1992). "Inference from iterative simulation using multiple sequences." Statistical Science, 7(4), 457–472. <doi:10.1214/ss/1177011136>
Lin L, Chu H (2018). "Bayesian multivariate meta-analysis of multiple factors." Research Synthesis Methods, 9(2), 261–272. <doi:10.1002/jrsm.1293>
Lin L, Zhang J, Hodges JS, Chu H (2017). "Performing arm-based network meta-analysis in R with the pcnetmeta package." Journal of Statistical Software, 80(5), 1–25. <doi:10.18637/jss.v080.i05>
Lu G, Ades AE (2004). "Combination of direct and indirect evidence in mixed treatment comparisons." Statistics in Medicine, 23(20), 3105–3124. <doi:10.1002/sim.1875>
Lu G, Ades AE (2009). "Modeling between-trial variance structure in mixed treatment comparisons." Biostatistics, 10(4), 792–805. <doi:10.1093/biostatistics/kxp032>
Spiegelhalter DJ, Best NG, Carlin BP, Van Der Linde A (2002). "Bayesian measures of model complexity and fit." Journal of the Royal Statistical Society, Series B (Statistical Methodology), 64(4), 583–639. <doi:10.1111/1467-9868.00353>
Wei Y, Higgins JPT (2013). "Bayesian multivariate meta-analysis with multiple outcomes." Statistics in Medicine, 32(17), 2911–2934. <doi:10.1002/sim.5745>
Zhang J, Carlin BP, Neaton JD, Soon GG, Nie L, Kane R, Virnig BA, Chu H (2014). "Network meta-analysis of randomized clinical trials: Reporting the proper summaries." Clinical Trials, 11(2), 246–262. <doi:10.1177/1740774513498322>
nma.ab.bin
, nma.ab.py
, nma.ab.followup
data("parkinson") # increase n.iter to reach convergence of MCMC # increase n.adapt to enhance efficiency set.seed(1234) cont.out <- nma.ab.cont(s.id, t.id, mean, sd, n, data = parkinson, param = c("mu", "diff"), model = "hom_eqcor", prior.type = "unif", n.adapt = 200, n.iter = 100, n.chains = 1)
data("parkinson") # increase n.iter to reach convergence of MCMC # increase n.adapt to enhance efficiency set.seed(1234) cont.out <- nma.ab.cont(s.id, t.id, mean, sd, n, data = parkinson, param = c("mu", "diff"), model = "hom_eqcor", prior.type = "unif", n.adapt = 200, n.iter = 100, n.chains = 1)
Performs the arm-based network meta-analysis for binary outcomes when the follow-up time of each study is reported, which estimates the treatment-specific rate, rate ratio between treatments, and their logarithms.
nma.ab.followup(s.id, t.id, event.n, total.n, followup, data, trtname, param = c("lograte", "logratio", "rank.prob"), model = "het_cor", prior.type, a = 0.001, b = 0.001, c = 10, higher.better = FALSE, digits = 4, n.adapt = 5000, n.iter = 100000, n.burnin = floor(n.iter/2), n.chains = 3, n.thin = max(1, floor((n.iter - n.burnin)/100000)), conv.diag = FALSE, trace = NULL, dic = FALSE, postdens = FALSE, mcmc.samples = FALSE)
nma.ab.followup(s.id, t.id, event.n, total.n, followup, data, trtname, param = c("lograte", "logratio", "rank.prob"), model = "het_cor", prior.type, a = 0.001, b = 0.001, c = 10, higher.better = FALSE, digits = 4, n.adapt = 5000, n.iter = 100000, n.burnin = floor(n.iter/2), n.chains = 3, n.thin = max(1, floor((n.iter - n.burnin)/100000)), conv.diag = FALSE, trace = NULL, dic = FALSE, postdens = FALSE, mcmc.samples = FALSE)
s.id |
a numeric or character vector specifying study ID, or the corresponding column name in the argument |
t.id |
a numeric or character vector specifying treatment ID, or the corresponding column name in the argument |
event.n |
a numeric vector of non-negative integers, specifying number of events in each study's treatment group, or the corresponding column name in the argument |
total.n |
a numeric vector of non-negative integers, specifying total number of participants in each study's treatment group, or the corresponding column name in the argument |
followup |
a numeric vector of positive numbers, specifying follow-up times for different studies, or the corresponding column name in the argument |
data |
an optional data frame containing the dataset of the network meta-analysis. If |
trtname |
a vector of character strings specifying the treatment names for the corresponding treatment IDs according to their order in |
param |
a vector of character strings specifying the effect measures to be estimated. The default includes log treatment-specific rate ( |
model |
a character string specifying which Bayesian hierarchical model to be applied in the arm-based network meta-analysis. This argument can be set as |
prior.type |
prior distribution of variances and/or covariances of random effects. If |
a , b
|
positive numbers, specifying the shape and scale parameters of inverse gamma priors for variance(s) of random effects if using |
c |
positive number, specifying the upper bound of uniform prior for standard deviation(s) of random effects if using |
higher.better |
an optional logical value which needs to be specified when estimating the treatment rank probabilities (i.e., "rank.prob" is included in argument |
digits |
a positive integer specifying the digits after the decimal point for the effect measure estimates. The default is 4. |
n.adapt |
the number of iterations for adaptation in Markov chain Monte Carlo (MCMC) algorithm. The default is 5,000. If a warning "adaptation incomplete" appears, users may increase |
n.iter |
the total number of iterations in each MCMC chain. The default is 100,000. |
n.burnin |
the number of iterations for burn-in period. The default is |
n.chains |
the number of MCMC chains. The default is 3. |
n.thin |
a positive integer specifying the thinning rate. The default is the thinning rate which yields no more than 100,000 iterations remaining in each chain. |
conv.diag |
a logical value indicating whether to perform MCMC convergence diagnostic. The default is |
trace |
a vector of character strings of effect measures. The character strings should be selected from those specified in |
dic |
a logical value indicating whether to calculate the deviance information criterion (DIC) value. The default is |
postdens |
a logical value indicating whether to draw the posterior density plots for treatment-specific rates. If |
mcmc.samples |
a logical value indicating whether to save MCMC posterior samples in the output object. The default is |
Suppose that a network meta-analysis collects studies on
treatments, where each study investigates a subset of the
treatments. The outcome is binary, and the follow-up time for each study is reported. Label the studies from
to
and the treatments from
to
. Let
be the subset of the
treatments that is compared in the
th study. Also, in the
th study, let
and
be the number of events and the total number of participants in treatment group
. Denote
as the follow-up time of the
th study. The arm-based network meta-analysis model for these settings is constructed as:
where is the complementary log-log link function, and
is a
positive definite covariance matrix. The
's are treatment-specific fixed effects, and the random effects
are correlated within each study with the covariance matrix
.
An unstructured covariance matrix in the model above corresponds to
model
= "het_cor"
. The inverse-Wishart prior can be assigned to . Alternatively, using the separation strategy by Cholesky decomposition (
prior.type
= "chol"
), uniform priors are assigned to the standard deviations in
and non-informative priors are assigned to the correlation components (Barnard et al., 2000; Lu and Ades, 2009; Wei and Higgins, 2013; Lin and Chu, 2018). Denote
as the standard deviation of
and
, then the correlation matrix is
. If we assume that all of the off-diagonal elements in
are equal, say to
, then this model corresponds to
model
= "het_eqcor"
. If we further assume the homogeneity of variances of the random effects, that is, for
, then the model is
"hom_eqcor"
. In addition, for the models "hom_eqcor"
and "het_eqcor"
, setting prior.type
as "invgamma"
implies using inverse-gamma priors with shape and scale parameters, and
, for
or
, and
"unif"
implies uniform priors for
or
.
nma.ab.followup
returns a list with estimates of effect measures specified in param
. If the argument dic
= TRUE
, the deviance information criterion (DIC) statistic will be returned in the output list. In addition, if conv.diag
= TRUE
, a .txt file containing the point estimates of the potential scale reduction factor and their upper confidence limits by Gelman and Rubin (1992) will be saved in users' current working directory. If postdens
= TRUE
, the posterior densities of treatment-specific absolute risks will be saved as a .pdf file. If trace
is specified, the trace plots are saved as .png files.
Earlier versions (< 4.0.0) of JAGS do not guarantee exact reproducibility of the results. We recommend users to install the latest version (>= 4.0.0) of JAGS so that exact reproducibility can be ensured by specifying certain seeds.
Barnard J, McCulloch R, Meng XL (2000). "Modeling covariance matrices in terms of standard deviations and correlations, with application to shrinkage." Statistica Sinica, 10(4), 1281–1311.
Dias S, Sutton AJ, Ades AE, Welton NJ (2013). "Evidence synthesis for decision making 2: a generalized linear modeling framework for pairwise and network meta-analysis of randomized controlled trials." Medical Decision Making, 33(5), 607–617. <doi:10.1177/0272989X12458724>
Gelman A, Rubin DB (1992). "Inference from iterative simulation using multiple sequences." Statistical Science, 7(4), 457–472. <doi:10.1214/ss/1177011136>
Lin L, Chu H (2018). "Bayesian multivariate meta-analysis of multiple factors." Research Synthesis Methods, 9(2), 261–272. <doi:10.1002/jrsm.1293>
Lin L, Zhang J, Hodges JS, Chu H (2017). "Performing arm-based network meta-analysis in R with the pcnetmeta package." Journal of Statistical Software, 80(5), 1–25. <doi:10.18637/jss.v080.i05>
Lu G, Ades AE (2004). "Combination of direct and indirect evidence in mixed treatment comparisons." Statistics in Medicine, 23(20), 3105–3124. <doi:10.1002/sim.1875>
Lu G, Ades AE (2009). "Modeling between-trial variance structure in mixed treatment comparisons." Biostatistics, 10(4), 792–805. <doi:10.1093/biostatistics/kxp032>
Spiegelhalter DJ, Best NG, Carlin BP, Van Der Linde A (2002). "Bayesian measures of model complexity and fit." Journal of the Royal Statistical Society, Series B (Statistical Methodology), 64(4), 583–639. <doi:10.1111/1467-9868.00353>
Wei Y, Higgins JPT (2013). "Bayesian multivariate meta-analysis with multiple outcomes." Statistics in Medicine, 32(17), 2911–2934. <doi:10.1002/sim.5745>
Zhang J, Carlin BP, Neaton JD, Soon GG, Nie L, Kane R, Virnig BA, Chu H (2014). "Network meta-analysis of randomized clinical trials: Reporting the proper summaries." Clinical Trials, 11(2), 246–262. <doi:10.1177/1740774513498322>
nma.ab.bin
, nma.ab.cont
, nma.ab.py
#data("diabetes") # increase n.iter to reach convergence of MCMC # increase n.adapt to enhance efficiency #set.seed(1234) #followup.out <- nma.ab.followup(s.id, t.id, r, n, folup, data = diabetes, # model = "het_cor", n.adapt = 500, n.iter = 100, n.chains = 1)
#data("diabetes") # increase n.iter to reach convergence of MCMC # increase n.adapt to enhance efficiency #set.seed(1234) #followup.out <- nma.ab.followup(s.id, t.id, r, n, folup, data = diabetes, # model = "het_cor", n.adapt = 500, n.iter = 100, n.chains = 1)
Performs the arm-based network meta-analysis for count datasets when the exposure times (in person-years) are reported, which estimates the treatment-specific rate, rate ratio between treatments, and their logarithms.
nma.ab.py(s.id, t.id, event.n, py, data, trtname, param = c("lograte", "logratio", "rank.prob"), model = "het_cor", prior.type, a = 0.001, b = 0.001, c = 10, higher.better = FALSE, digits = 4, n.adapt = 5000, n.iter = 100000, n.burnin = floor(n.iter/2), n.chains = 3, n.thin = max(1, floor((n.iter - n.burnin)/100000)), conv.diag = FALSE, trace = NULL, dic = FALSE, postdens = FALSE, mcmc.samples = FALSE)
nma.ab.py(s.id, t.id, event.n, py, data, trtname, param = c("lograte", "logratio", "rank.prob"), model = "het_cor", prior.type, a = 0.001, b = 0.001, c = 10, higher.better = FALSE, digits = 4, n.adapt = 5000, n.iter = 100000, n.burnin = floor(n.iter/2), n.chains = 3, n.thin = max(1, floor((n.iter - n.burnin)/100000)), conv.diag = FALSE, trace = NULL, dic = FALSE, postdens = FALSE, mcmc.samples = FALSE)
s.id |
a numeric or character vector specifying study ID, or the corresponding column name in the argument |
t.id |
a numeric or character vector specifying treatment ID, or the corresponding column name in the argument |
event.n |
a numeric vector of non-negative integers, specifying number of events in each study's treatment group, or the corresponding column name in the argument |
py |
a numeric vector of non-negative numbers, specifying exposure time in person-years in each study's treatment group, or the corresponding column name in the argument |
data |
an optional data frame containing the dataset of the network meta-analysis. If |
trtname |
a vector of character strings specifying the treatment names for the corresponding treatment IDs according to their order in |
param |
a vector of character strings specifying the effect measures to be estimated. The default includes log treatment-specific rate ( |
model |
a character string specifying which Bayesian hierarchical model to be applied in the arm-based network meta-analysis. This argument can be set as |
prior.type |
prior distribution of variances and/or covariances of random effects. If |
a , b
|
positive numbers, specifying the shape and scale parameters of inverse gamma priors for variance(s) of random effects if using |
c |
positive number, specifying the upper bound of uniform prior for standard deviation(s) of random effects if using |
higher.better |
an optional logical value which needs to be specified when estimating the treatment rank probabilities (i.e., "rank.prob" is included in argument |
digits |
a positive integer specifying the digits after the decimal point of the effect measures estimates. The default is 4. |
n.adapt |
the number of iterations for adaptation in Markov chain Monte Carlo (MCMC) algorithm. The default is 5,000. If a warning "adaptation incomplete" appears, users may increase |
n.iter |
the total number of iterations in each MCMC chain. The default is 100,000. |
n.burnin |
the number of iterations for burn-in period. The default is |
n.chains |
the number of MCMC chains. The default is 3. |
n.thin |
a positive integer specifying the thinning rate. The default is the thinning rate which yields no more than 100,000 iterations remaining in each chain. |
conv.diag |
a logical value indicating whether to perform MCMC convergence diagnostic. The default is |
trace |
a vector of character strings of effect measures. The character strings should be selected from those specified in |
dic |
a logical value indicating whether to calculate the deviance information criterion (DIC) value. The default is |
postdens |
a logical value indicating whether to draw the posterior density plots for treatment-specific rates. If |
mcmc.samples |
a logical value indicating whether to save MCMC posterior samples in the output object. The default is |
Suppose that a network meta-analysis collects studies on
treatments, where each study investigates a subset of the
treatments. The exposure time in person-years and the count of events in each treatment group are reported. Label the studies from
to
and the treatments from
to
. Let
be the subset of the
treatments that is compared in the
th study. Also, in the
th study, let
be the number of events in treatment group
, and
be the corresponding exposure time in person-years. The arm-based network meta-analysis model for these settings is constructed as:
where is a
positive definite correlation matrix. The
's are treatment-specific fixed effects, and the random effects
are correlated within each study with the covariance matrix
.
An unstructured covariance matrix in the model above corresponds to
model
= "het_cor"
. The inverse-Wishart prior can be assigned to . Alternatively, using the separation strategy by Cholesky decomposition (
prior.type
= "chol"
), uniform priors are assigned to the standard deviations in
and non-informative priors are assigned to the correlation components (Barnard et al., 2000; Lu and Ades, 2009; Wei and Higgins, 2013; Lin and Chu, 2018). Denote
as the standard deviation of
and
, then the correlation matrix is
. If we assume that all of the off-diagonal elements in
are equal, say to
, then this model corresponds to
model
= "het_eqcor"
. If we further assume the homogeneity of variances of the random effects, that is, for
, then the model is
"hom_eqcor"
. In addition, for the models "hom_eqcor"
and "het_eqcor"
, setting prior.type
as "invgamma"
implies using inverse-gamma priors with shape and scale parameters, and
, for
or
, and
"unif"
implies uniform priors for
or
.
nma.ab.py
returns a list with estimates of effect measures specified in param
. If the argument dic
= TRUE
, the deviance information criterion (DIC) statistic will be returned in the output list. In addition, if conv.diag
= TRUE
, a .txt file containing the point estimates of the potential scale reduction factor and their upper confidence limits by Gelman and Rubin (1992) will be saved in users' current working directory. If postdens
= TRUE
, the posterior densities of treatment-specific absolute risks will be saved as a .pdf file. If trace
is specified, the trace plots are saved as .png files.
Earlier versions (< 4.0.0) of JAGS do not guarantee exact reproducibility of the results. We recommend users to install the latest version (>= 4.0.0) of JAGS so that exact reproducibility can be ensured by specifying certain seeds.
Barnard J, McCulloch R, Meng XL (2000). "Modeling covariance matrices in terms of standard deviations and correlations, with application to shrinkage." Statistica Sinica, 10(4), 1281–1311.
Dias S, Sutton AJ, Ades AE, Welton NJ (2013). "Evidence synthesis for decision making 2: a generalized linear modeling framework for pairwise and network meta-analysis of randomized controlled trials." Medical Decision Making, 33(5), 607–617. <doi:10.1177/0272989X12458724>
Gelman A, Rubin DB (1992). "Inference from iterative simulation using multiple sequences." Statistical Science, 7(4), 457–472. <doi:10.1214/ss/1177011136>
Lin L, Chu H (2018). "Bayesian multivariate meta-analysis of multiple factors." Research Synthesis Methods, 9(2), 261–272. <doi:10.1002/jrsm.1293>
Lin L, Zhang J, Hodges JS, Chu H (2017). "Performing arm-based network meta-analysis in R with the pcnetmeta package." Journal of Statistical Software, 80(5), 1–25. <doi:10.18637/jss.v080.i05>
Lu G, Ades AE (2004). "Combination of direct and indirect evidence in mixed treatment comparisons." Statistics in Medicine, 23(20), 3105–3124. <doi:10.1002/sim.1875>
Lu G, Ades AE (2009). "Modeling between-trial variance structure in mixed treatment comparisons." Biostatistics, 10(4), 792–805. <doi:10.1093/biostatistics/kxp032>
Spiegelhalter DJ, Best NG, Carlin BP, Van Der Linde A (2002). "Bayesian measures of model complexity and fit." Journal of the Royal Statistical Society, Series B (Statistical Methodology), 64(4), 583–639. <doi:10.1111/1467-9868.00353>
Wei Y, Higgins JPT (2013). "Bayesian multivariate meta-analysis with multiple outcomes." Statistics in Medicine, 32(17), 2911–2934. <doi:10.1002/sim.5745>
Zhang J, Carlin BP, Neaton JD, Soon GG, Nie L, Kane R, Virnig BA, Chu H (2014). "Network meta-analysis of randomized clinical trials: Reporting the proper summaries." Clinical Trials, 11(2), 246–262. <doi:10.1177/1740774513498322>
nma.ab.bin
, nma.ab.cont
, nma.ab.followup
#data("dietaryfat") # increase n.iter to reach convergence of MCMC # increase n.adapt to enhance efficiency #set.seed(1234) #py.out <- nma.ab.py(s.id, t.id, r, py, data = dietaryfat, model = "het_cor", # n.adapt = 300, n.iter = 100, n.chains = 1)
#data("dietaryfat") # increase n.iter to reach convergence of MCMC # increase n.adapt to enhance efficiency #set.seed(1234) #py.out <- nma.ab.py(s.id, t.id, r, py, data = dietaryfat, model = "het_cor", # n.adapt = 300, n.iter = 100, n.chains = 1)
Visualizes the network of treatment comparisons.
nma.networkplot(s.id, t.id, n, data, title = "", title.cex = 1, trtname, alphabetic = TRUE, multi.show = FALSE, multi.col, weight.edge = TRUE, adjust.thick = 5, weight.node = TRUE, weight.node.ss = FALSE, adjust.node.size = 10, node.col = "gray", edge.col = "black", text.cex = 1, adjust.figsizex = 1.1, adjust.figsizey = 1.1)
nma.networkplot(s.id, t.id, n, data, title = "", title.cex = 1, trtname, alphabetic = TRUE, multi.show = FALSE, multi.col, weight.edge = TRUE, adjust.thick = 5, weight.node = TRUE, weight.node.ss = FALSE, adjust.node.size = 10, node.col = "gray", edge.col = "black", text.cex = 1, adjust.figsizex = 1.1, adjust.figsizey = 1.1)
s.id |
a numeric or character vector specifying study ID, or the corresponding column name in the argument |
t.id |
a numeric or character vector specifying treatment ID, or the corresponding column name in the argument |
n |
a numeric or character vector specifying sample size, or the corresponding column name in the argument |
data |
an optional data frame containing the dataset of the network meta-analysis. If |
title |
a character string indicating the plot title. |
title.cex |
the size of the plot title. |
trtname |
a vector of character strings specifying the treatment names for the corresponding treatment IDs according to their order in |
alphabetic |
a logical value indicating whether to sort treatment nodes alphabetically in the network plot. The default is |
multi.show |
a logical value indicating whether to show multi-arm studies (if any). Multi-arm studies with different treatment sets are visualized by shaded treatment loops in different colors. |
multi.col |
an optional vector of colors for visualizing multi-arm studies. |
weight.edge |
a logical value indicating whether to draw the edges proportionally to the number of direct treatment comparisons. The default is |
adjust.thick |
a positive integer specifying the maximum thickness of the edge when |
weight.node |
a logical value indicating whether the node size is weighted by the total sample size or the total number of direct treatment comparisons of the corresponding treatment ( |
weight.node.ss |
a logical value indicating whether the node size is proportional to the total sample size ( |
adjust.node.size |
a positive number to adjust the node sizes when |
node.col |
a character string specifying the color of treatment nodes. The default is |
edge.col |
a character string specifying the color of edges between treatments nodes. The default is |
text.cex |
a positive integer specifying the sizes of treatment names placed around/on the corresponding nodes. The default is 1. |
adjust.figsizex |
a positive number used to adjust the plot width. The default is 1.1. |
adjust.figsizey |
a positive number used to adjust the plot height. The default is 1.1. |
A network plot is generated. Each node represents a treatment, and the edges indicate the direct comparisons between the two treatments.
Lin L, Zhang J, Hodges JS, Chu H (2017). "Performing arm-based network meta-analysis in R with the pcnetmeta package." Journal of Statistical Software, 80(5), 1–25. <doi:10.18637/jss.v080.i05>
data("smoke") # NC: No contact; SH: Self-help # IC: individual counseling; GC: group counseling nma.networkplot(s.id, t.id, data = smoke, title = "Smoke Cessation", trtname = c("NC", "SH", "IC", "GC")) nma.networkplot(s.id, t.id, n, data = smoke, title = "Smoke Cessation", trtname = c("NC", "SH", "IC", "GC"), weight.node.ss = TRUE, multi.show = TRUE) data("diabetes") nma.networkplot(s.id, t.id, data = diabetes, title = "Diabetes", trtname = c("Diuretic", "Placebo", "b-blocker", "CCB", "ACE inhibitor", "ARB")) nma.networkplot(s.id, t.id, data = diabetes, title = "Diabetes", trtname = c("Diuretic", "Placebo", "b-blocker", "CCB", "ACE inhibitor", "ARB"), multi.show = TRUE) nma.networkplot(s.id, t.id, n, data = diabetes, title = "", weight.node.ss = TRUE, multi.show = TRUE) mtext(text = "Diabetes", side = 3, line = 0, font = 1, cex = 2)
data("smoke") # NC: No contact; SH: Self-help # IC: individual counseling; GC: group counseling nma.networkplot(s.id, t.id, data = smoke, title = "Smoke Cessation", trtname = c("NC", "SH", "IC", "GC")) nma.networkplot(s.id, t.id, n, data = smoke, title = "Smoke Cessation", trtname = c("NC", "SH", "IC", "GC"), weight.node.ss = TRUE, multi.show = TRUE) data("diabetes") nma.networkplot(s.id, t.id, data = diabetes, title = "Diabetes", trtname = c("Diuretic", "Placebo", "b-blocker", "CCB", "ACE inhibitor", "ARB")) nma.networkplot(s.id, t.id, data = diabetes, title = "Diabetes", trtname = c("Diuretic", "Placebo", "b-blocker", "CCB", "ACE inhibitor", "ARB"), multi.show = TRUE) nma.networkplot(s.id, t.id, n, data = diabetes, title = "", weight.node.ss = TRUE, multi.show = TRUE) mtext(text = "Diabetes", side = 3, line = 0, font = 1, cex = 2)
An example of network meta-analysis for continuous outcomes.
data("parkinson")
data("parkinson")
A data frame containing 7 studies which compare 5 treatments.
s.id
a numeric vector of study IDs.
t.id
a numeric vector of treatment IDs.
mean
a numeric vector of the mean of continuous outcomes in each treatment group in each study.
sd
a numeric vector of the standard deviance of continuous outcomes in each treatment group in each study.
n
a numeric vector of the total number of participants in each treatment group in each study.
The continuous outcome measures the off-time reduction in patients given dopamine agonists as adjunct therapy in Parkinson's disease. Treatment 1 is placebo and treatments 2 to 5 are active drugs.
Dias S, Sutton AJ, Ades AE, Welton NJ (2013). "Evidence synthesis for decision making 2: a generalized linear modeling framework for pairwise and network meta-analysis of randomized controlled trials." Medical Decision Making, 33(5), 607–617. <doi:10.1177/0272989X12458724>
rank.prob
generates a plot for treatment rank probabilities.
rank.prob(nma.obj, cex.axis = 1, cex.lab = 1, median = FALSE)
rank.prob(nma.obj, cex.axis = 1, cex.lab = 1, median = FALSE)
nma.obj |
a list object obtained by function |
cex.axis |
a numeric value specifying the size of the tick label numbers/text. |
cex.lab |
a numeric value specifying the size of the axis label text. |
median |
a logical value indicating whether the rank probabilities are based on the marginal effect measures ( |
A plot of treatment rank probabilities is generated. Each vertical bar represents probabilities of being different ranks for a specific treatment. A darker area indicates the probability of being a higher rank. The black area indicates the probability of being the best treatment.
None.
data("smoke") # increase n.iter to reach convergence set.seed(1234) nma.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, trtname = c("NC", "SH", "IC", "GC"), param = "rank.prob", model = "het_cor", higher.better = TRUE, n.adapt = 1000, n.iter = 100, n.chains = 1) rank.prob(nma.out)
data("smoke") # increase n.iter to reach convergence set.seed(1234) nma.out <- nma.ab.bin(s.id, t.id, r, n, data = smoke, trtname = c("NC", "SH", "IC", "GC"), param = "rank.prob", model = "het_cor", higher.better = TRUE, n.adapt = 1000, n.iter = 100, n.chains = 1) rank.prob(nma.out)
An example of network meta-analysis for binary outcomes.
data("smoke")
data("smoke")
A data frame containing 24 studies on smoking cessation, comparing four treatments.
s.id
a numeric vector of study IDs.
t.id
a numeric vector of treatment IDs.
r
a numeric vector of the event count for a certain treatment in the corresponding study.
n
a numeric vector of the total number of participants for a certain treatment in the corresponding study.
Treatment IDs stand for 1) no contact; 2) self-help; 3) individual counseling; and 4) group counseling.
Hasselblad V (1998) "Meta-analysis of multitreatment studies." Medical Decision Making, 18(1), 37–43. <doi:10.1177/0272989X9801800110>
Lu G, Ades AE (2006) "Assessing evidence inconsistency in mixed treatment comparisons." Journal of the American Statistical Association 101(474), 447–459. <doi:10.1198/016214505000001302>