Title: | Network Meta-Analysis using Integrated Nested Laplace Approximations |
---|---|
Description: | Performs network meta-analysis using integrated nested Laplace approximations ('INLA') which is described in Guenhan, Held, and Friede (2018) <doi:10.1002/jrsm.1285>. Includes methods to assess the heterogeneity and inconsistency in the network. Contains more than ten different network meta-analysis dataset. 'INLA' package can be obtained from <https://www.r-inla.org>. |
Authors: | Burak Kuersad Guenhan [aut, cre]
|
Maintainer: | Burak Kuersad Guenhan <[email protected]> |
License: | GPL (>= 2) |
Version: | 1.0.0 |
Built: | 2025-03-14 04:14:12 UTC |
Source: | https://github.com/gunhanb/nmainla |
Greco et al. (2013) considered four anaesthetic agents used in cardiac surgery (called here 1, 2, 3 and 4) and investigated through NMA.
Anestheticdat
Anestheticdat
An object of class data.frame
with 30 rows and 10 columns.
Greco, T., Landoni, G., Biondi-Zoccai, G., D'Ascenzo, F. and Zangrillo, A., 2013. A Bayesian network meta-analysis for binary outcome: how to do it. Statistical methods in medical research, p.0962280213500185.
Data are available from a review of trials of certolizumab pegol (CZP) for the treatment of rheumatoid arthritis in patients who had failed on disease-modifying antirheumatic drugs, including methotrexate (MTX). 20 Twelve MTX controlled trials were identified, comparing 6 different treatments with placebo. The primary outcome is improving by at least 50 of Rheumatology scale (ACR50) at 6 months. A trial-specificc covariate, the mean disease duration in years for patients, is also given.
Certolizumabdat
Certolizumabdat
An object of class data.frame
with 12 rows and 9 columns.
Dias, S., Sutton, A.J., Welton, N.J. and Ades, A.E., 2013. Evidence synthesis for decision making 3 heterogeneity-subgroups, meta-regression, bias, and bias-adjustment. Medical Decision Making, 33(5), pp.618-640.
The stroke prevention dataset describes a network comparing 17 treatments with 26 trials.
CooperStrokedat
CooperStrokedat
A data frame with 26 observations on the following 17 variables.
r1
Number of events (responses) in the baseline treatment (treatment 1).
r2
Number of events (responses) in the second study arm treatment (treatment 2).
r3
Number of events (responses) in the third study arm treatment (treatment 3).
r4
Number of events (responses) in the third study arm treatment (treatment 4).
r5
Number of events (responses) in the third study arm treatment (treatment 5).
n1
Total number of study participants in the baseline treatment (treatment 1).
n2
Total number of study participants in the second study arm treatment (treatment 2).
n3
Total number of study participants in the second study arm treatment (treatment 3).
n4
Total number of study participants in the second study arm treatment (treatment 4).
n5
Total number of study participants in the second study arm treatment (treatment 5).
t1
Indicator variable identifying treatment 1.
t2
Indicator variable identifying treatment 2.
t3
Indicator variable identifying treatment 3.
t4
Indicator variable identifying treatment 4.
t5
Indicator variable identifying treatment 5.
na
Indicator with number of arms in trial.
cov
Covariate, study-specific covariates
des
Design, the set of treatments included in each study
Cooper, N.J., Sutton, A.J., Morris, D., Ades, A.E. and Welton, N.J., 2009. Addressing between-study heterogeneity and inconsistency in mixed treatment comparisons: Application to stroke prevention treatments in individuals with non-rheumatic atrial fibrillation. Statistics in medicine, 28(14), pp.1861-1881.
create_INLA_dat
converts datasets in the one-study-per-row format to one-arm-per-row format
, then adds indicator (dummy) variables for the basic contrasts,
heterogeneity random effects and design-specific inconsistency random effects and for
correlated multi-arm trials.
create_INLA_dat( dat = dat, armVars = c(treatment = "t", responders = "r", sampleSize = "n"), covariate = "cov", design = "des", nArmsVar = "na" )
create_INLA_dat( dat = dat, armVars = c(treatment = "t", responders = "r", sampleSize = "n"), covariate = "cov", design = "des", nArmsVar = "na" )
dat |
Data in one-study-per-row format. |
armVars |
Vector of per-arm variables The name of each component will be the column name in the resulting dataset. |
covariate |
Optional. Vector of study-specific covariate |
design |
Optional. Vector of study-specific design. We refer design for the set of treatments in each trial. |
nArmsVar |
Variable holding the number of arms for each study. |
The resulting data.frame can be used as data argument in nma_inla
.
A data frame with the generated coloumns.
Burak Kuersad Guenhan, [email protected], Rafael Sauter and Gert van Valkenhoef
gemtc::mtc.data.studyrow
data('Smokdat') ## Create the dataset suitable for INLA SmokdatINLA <- create_INLA_dat(dat = Smokdat, armVars = c('treatment' = 't', 'responders' = 'r' ,'sampleSize' = 'n'), nArmsVar = 'na') ## Check that the data are correct print(SmokdatINLA)
data('Smokdat') ## Create the dataset suitable for INLA SmokdatINLA <- create_INLA_dat(dat = Smokdat, armVars = c('treatment' = 't', 'responders' = 'r' ,'sampleSize' = 'n'), nArmsVar = 'na') ## Check that the data are correct print(SmokdatINLA)
create_INLA_dat_pair
creates two dataframes, one to use in
a contrast based and the other in an arm-based pairwise meta-analysis.
create_INLA_dat_pair(ntrt, nctrl, ptrt, pctrl, cov = NULL)
create_INLA_dat_pair(ntrt, nctrl, ptrt, pctrl, cov = NULL)
ntrt |
Number of subjects in treatment arm |
nctrl |
Number of subjects in control arm |
ptrt |
Number of events in treatment arm |
pctrl |
Number of events in treatment arm |
cov |
Optional argument to include a covariate in the model |
The resulting data.frame can be used as data argument in
meta_inla
.
A list of two dataframe objects
data('TBdat') ## Create the dataset suitable for INLA TBdatINLA <- create_INLA_dat_pair(TBdat$TRT, TBdat$CON, TBdat$TRTTB, TBdat$CONTB) ## Check that the data are correct print(TBdatINLA)
data('TBdat') ## Create the dataset suitable for INLA TBdatINLA <- create_INLA_dat_pair(TBdat$TRT, TBdat$CON, TBdat$TRTTB, TBdat$CONTB) ## Check that the data are correct print(TBdatINLA)
Results from 26 trials examining the effectiveness of glucose-lowering agents in patients with type 2 diabetes.
Diabetesdat
Diabetesdat
An object of class data.frame
with 26 rows and 11 columns.
Senn, S., Gavini, F., Magrez, D., & Scheen, A. (2013). Issues in performing a network meta-analysis. Statistical Methods in Medical Research, 22, 169–189.
In a Cochrane Review of randomised controlled trials to assess the effect of change in dietary fats on total and cardiovascular mortality, 104 data extracted was in the form of rates and given as the number of events per person-years observed.
Dietaryfatdat
Dietaryfatdat
An object of class data.frame
with 10 rows and 10 columns.
Dias, S., Welton, N.J., Sutton, A.J. & Ades, A.E. NICE DSU Technical Support Document 2: A Generalised Linear Modelling Framework for Pairwise and Network Meta-Analysis of Randomised Controlled Trials. 2011; last updated September 2016; available from http://www.nicedsu.org.uk
The flour dataset describes a network comparing 6 treatments with 130 trials. There are 121 pairwise comparisons, 8 three-arm trials and 1 four-arm trial. The main outcome is caries increment, as measured by the change in decayed, missing, and filled tooth surfaces (DMFS) in the permanent dentition of children. Data that are available for study i include the mean caries increment in trial i arm k, y ik, the number of patients at risk in each trial arm, n ik, the time that individuals are at risk in arm k of study i, t i (measured as the trial follow-up time, which is the same for both arms) and the interventions being compared.
Flourdat
Flourdat
An object of class data.frame
with 130 rows and 20 columns.
Dias, S., Welton, N.J., Marinho, V.C.C., Salanti, G., Higgins, J.P.T. and Ades, A.E., 2010. Estimation and adjustment of bias in randomized evidence by using mixed treatment comparison meta-analysis. Journal of the Royal Statistical Society: Series A (Statistics in Society), 173(3), pp.613-629.
An example of network meta-analysis for binary outcomes with follow-up times reported.
IncDiabetesdat
IncDiabetesdat
An object of class data.frame
with 22 rows and 12 columns.
This network meta-analysis is studied by Elliott and Meyer (2007) to assess the effects of an ti-hypertensive agents on incident diabetes. Treatment IDs represent 1) diuretic; 2) placebo; 3) beta-blocker; 4) CCB; 5) ACE inhibitor; and 6) ARB.
Elliott WJ and Meyer PM (2007). "Incident diabetes in clinical trials of antihypertensive drugs: a network meta-analysis." Lancet 369(9557), 201-7.
Dataset for pairwise meta-analysis with many zero entries. Data is from a Cochrane review on postoperative stroke occurrence when comparing off-pump and on-pump coronary artery bypass grafting for ischemic heart disease. This data is used as an example in Kuss (2014).
KussHeartdat
KussHeartdat
An object of class tbl_df
(inherits from tbl
, data.frame
) with 60 rows and 4 columns.
Kuss O. (2015), Statistical methods for meta-analyses including information from studies without any events–add nothing to nothing and succeed nevertheless, Statist. Med., 34; pages 1097-1116, doi: 10.1002/sim.6383
meta_inla
fits a pairwise meta-analysis model using INLA
meta_inla( datINLA, fixed.par = c(0, 1000), tau.prior = "uniform", tau.par = c(0, 5), type = "FE", approach = "arm-level", mreg = FALSE, verbose = FALSE, inla.strategy = "simplified.laplace", improve.hyperpar.dz = 0.75, correct = FALSE, correct.factor = 10 )
meta_inla( datINLA, fixed.par = c(0, 1000), tau.prior = "uniform", tau.par = c(0, 5), type = "FE", approach = "arm-level", mreg = FALSE, verbose = FALSE, inla.strategy = "simplified.laplace", improve.hyperpar.dz = 0.75, correct = FALSE, correct.factor = 10 )
datINLA |
An object of |
fixed.par |
A numerical vector specifying the parameter of the normal prior density for mean treatment effect, first value is parameter for mean, second is for variance. |
tau.prior |
A string specifying the prior density for the heterogeneity standard deviation, options are 'uniform' for uniform prior and 'half-normal' for half-normal prior. |
tau.par |
A numerical vector specifying the parameter of the prior density for heterogenety stdev.
|
type |
A string indicating the type of the model, options are "FE", "RE". |
approach |
A string indicating the approach of the model, options are "summary-level", "arm-level" |
mreg |
Logical indicating whether covariate(s) should be incorporated to fit a
meta-regression model, default |
verbose |
Logical indicating whether the program should run in a verbose model, default |
inla.strategy |
A string specfying the strategy to use for the approximations of INLA;
one of 'gaussian', 'simplified.laplace' (default) or 'laplace', see |
improve.hyperpar.dz |
Step length in the standardized scale used in the construction of the grid, default 0.75,
see |
correct |
Logical Add correction for the Laplace approximation, default |
correct.factor |
Numerical Factor used in adjusting the correction factor if |
The following model types are supported
FE
, fixed-effect model
RE
, random effects model
meta_inla
returns a meta_inla
object with components:
data('TBdat') ## Create the dataset suitable for INLA TBdatINLA <- create_INLA_dat_pair(TBdat$TRT, TBdat$CON, TBdat$TRTTB, TBdat$CONTB) ## Fitting a random-effects model using arm-level approach ## Not run: if(requireNamespace('INLA', quietly = TRUE)){ require('INLA', quietly = TRUE) fit.TB.RE.INLA <- meta_inla(TBdatINLA, type = 'RE', approach = 'arm-level', tau.prior = 'uniform', tau.par = c(0, 5)) } ## End(Not run)
data('TBdat') ## Create the dataset suitable for INLA TBdatINLA <- create_INLA_dat_pair(TBdat$TRT, TBdat$CON, TBdat$TRTTB, TBdat$CONTB) ## Fitting a random-effects model using arm-level approach ## Not run: if(requireNamespace('INLA', quietly = TRUE)){ require('INLA', quietly = TRUE) fit.TB.RE.INLA <- meta_inla(TBdatINLA, type = 'RE', approach = 'arm-level', tau.prior = 'uniform', tau.par = c(0, 5)) } ## End(Not run)
nma_inla
fits a network meta-analysis model using INLA.
nma_inla( datINLA, likelihood = NULL, fixed.par = c(0, 1000), tau.prior = "uniform", tau.par = c(0, 5), kappa.prior = "uniform", kappa.par = c(0, 5), mreg = FALSE, type = "consistency", verbose = FALSE, inla.strategy = "simplified.laplace", improve.hyperpar.dz = 0.75, correct = FALSE, correct.factor = 10, improve.hyperpar = TRUE )
nma_inla( datINLA, likelihood = NULL, fixed.par = c(0, 1000), tau.prior = "uniform", tau.par = c(0, 5), kappa.prior = "uniform", kappa.par = c(0, 5), mreg = FALSE, type = "consistency", verbose = FALSE, inla.strategy = "simplified.laplace", improve.hyperpar.dz = 0.75, correct = FALSE, correct.factor = 10, improve.hyperpar = TRUE )
datINLA |
An object of |
likelihood |
The likelihood to be used. |
fixed.par |
A numerical vector specifying the parameter of the normal prior density for basic parameters, first value is parameter for mean, second is for variance. |
tau.prior |
A string specifying the prior density for the heterogeneity standard deviation, options are 'uniform' for uniform prior and 'half-normal' for half-normal prior. |
tau.par |
A numerical vector specifying the parameter of the prior density for heterogenety stdev.
|
kappa.prior |
A string specifying the prior density for the inconsistency standard deviation, options are 'uniform' for uniform prior and 'half-normal' for half-normal prior. |
kappa.par |
A numerical vector specifying the parameter of the prior.
density for inconsistency stdev. The definition of the priors is the same as for |
mreg |
Logical indicating whether covariate(s) should be incorporated to fit a
network meta-regression model, default |
type |
A string indicating the type of the model, options are "FE", "consistency" and "jackson". |
verbose |
Logical indicating whether the program should run in a verbose model, default |
inla.strategy |
A string specfying the strategy to use for the approximations of INLA;
one of 'gaussian', 'simplified.laplace' (default) or 'laplace', see |
improve.hyperpar.dz |
Step length in the standardized scale used in the construction of the grid, default 0.75,
see |
correct |
Logical Add correction for the Laplace approximation, default |
correct.factor |
Numerical Factor used in adjusting the correction factor if |
improve.hyperpar |
Improve the estimates of the posterior marginals for the hyperparameters
of the model using the grid integration strategy, default |
The following likelihood types are supported
normal
: for continuous (mean difference) data.
Required coloumns: [mean, std.err]
Result: relative mean difference
binomial
: for dichotomous data.
Required coloumns: [responders, sampleSize]
Result: log odds ratio
normal
: for event-rate (survival) data.
Required coloumns: [responders, exposure]
Result: log hazard ratio
The following model types are supported
FE
, ordinary fixed effect model, assuming homogeneity between trials
(Dias et al., 2013)
consistency
, ordinary consistency model, assuming consistency in the
network. (Jackson et al., 2014)
jackson
, the design-by-treatment interaction model with random
inconsistency parameters. (Jackson et al., 2014)
nma_inla
returns a nma_inla
object.
SmokdatINLA <- create_INLA_dat(dat = Smokdat, armVars = c('treatment' = 't', 'responders' = 'r' ,'sampleSize' = 'n'), nArmsVar = 'na') ## Not run: ## Fitting a consistency model if(requireNamespace('INLA', quietly = TRUE)){ require('INLA', quietly = TRUE) fit.Smok.cons.INLA <- nma_inla(SmokdatINLA, likelihood = 'binomial', type = 'consistency', tau.prior = 'uniform', tau.par = c(0, 5)) } ## End(Not run)
SmokdatINLA <- create_INLA_dat(dat = Smokdat, armVars = c('treatment' = 't', 'responders' = 'r' ,'sampleSize' = 'n'), nArmsVar = 'na') ## Not run: ## Fitting a consistency model if(requireNamespace('INLA', quietly = TRUE)){ require('INLA', quietly = TRUE) fit.Smok.cons.INLA <- nma_inla(SmokdatINLA, likelihood = 'binomial', type = 'consistency', tau.prior = 'uniform', tau.par = c(0, 5)) } ## End(Not run)
An R package for performing network meta-analysis using INLA.
Network meta-analysis is a generalization of pairwise meta-analysis to analyze networks of trials comparing two or more treatments simultaneously (Dias et al, 2011). Bayesian hierarchical models are commonly used for network meta-analysis (Dias et al, 2011). The default choice for performing inference within such models are Markov Chain Monte Carlo (MCMC), for example using BUGS-variants programs such as JAGS. A deterministic approach to do fully Bayesian inference for latent Gaussian models (LGMs) are integrated nested Laplace approximations (INLA) (Rue et al, 2009) which is a fast and accurate alternative to MCMC. INLA methodology is implemented as an R package INLA (<www.r-inla.org>). Sauter and Held (2015) has shown that INLA can be used for fitting many NMA models including fixed effect and consistency models, node-splitting models.
This package extends the INLA implementation of Sauter and Held (2015) to Jackson model (Jackson et al, 2014) and network meta-regression and extracts the features needed for NMA models from INLA R package and presents in an intuitive way (Guenhan et al, in preparation). Currently, contrast-based network meta-analysis using trial-arm level data for datasets with binary, continuous, and survival outcomes are supported. Note that the installation of R package 'INLA' is compulsory for successful usage. The 'INLA' package can be obtained from <http://www.r-inla.org>. We recommend the testing version, which can be downloaded by running: source("http://www.math.ntnu.no/inla/givemeINLA-testing.R").
Type vignette("nmaINLA") to how to use this package.
The development version of nmaINLA is available on GitHub <https://github.com/gunhanb/nmaINLA>.
Burak Kuersad Guenhan <[email protected]>
Guenhan, B.K., Friede, T., Held, L. (2018) A design-by-treatment interaction model for network meta-analysis and meta-regression with integrated nested Laplace approximations. Res Syn Meth. 2018;1-14. https://doi.org/10.1002/jrsm.1285
Sauter, R. and Held, L. (2015). Network meta-analysis with integrated nested Laplace approximations. Biometrical Journal 57 1038–1050.
Jackson, D., Barrett, J. K., Rice, S., White, I. R. and Higgins, J. P. (2014). A design-by-treatment interaction model for network meta-analysis with random inconsistency effects. Statistics in Medicine 33 3639–3654.
Rue, H., Martino, S. and Chopin, N. (2009). Approximate Bayesian inference for latent Gaussian models by using integrated nested Laplace approximations. Journal of the Royal Statistical Society: Series B (Statistical Methodology) 71 319–392.
Dias, S., Welton, N. J., Sutton, A. J. and Ades, A. (2011). NICE DSU Technical Support Document 2: A Generalised Linear Modelling Framework for Pairwise and Network Meta-analysis of Randomised Controlled Trials. Last updated September 2016.
Dias, S., Sutton, A. J., Welton, N. J. and Ades, A. E. (2013). Evidence synthesis for Decision Making 3: Heterogeneity–Subgroups, Meta-Regression, Bias, and Bias-Adjustment. Medical Decision Making 33 618–640.
Data are the mean off-time reduction in patients given dopamine Agonists as adjunct therapy in Parkinson's disease. The data available are the mean, standard deviation and number of patients in each trial arm, for 7 studies of five different drugs: placebo, coded 1, and five active drugs coded 2 to 5.
Parkinsondat
Parkinsondat
An object of class data.frame
with 7 rows and 11 columns.
Dias, S., Welton, N.J., Sutton, A.J. & Ades, A.E. NICE DSU Technical Support Document 2: A Generalised Linear Modelling Framework for Pairwise and Network Meta-Analysis of Randomised Controlled Trials. 2011; last updated September 2016; available from http://www.nicedsu.org.uk
Takes a create_INLA_dat
output and plots a network graph.
plot_nma( s.id = "study", t.id = "treatment", data, title = "", adjust.figsizex = 1.1, adjust.figsizey = 1.1 )
plot_nma( s.id = "study", t.id = "treatment", data, title = "", adjust.figsizex = 1.1, adjust.figsizey = 1.1 )
s.id |
Variable holding the study IDs for each study. The default is "study". |
t.id |
Variable holding the treatments for each study. The default is "treatment". |
data |
A |
title |
A character string indicating plot title. |
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. |
Lifeng Lin, Jing Zhang, and Haitao Chu
This function is taken from nma.networkplot
function from pcnetmeta
R package.
pcnetmeta::nma.networkplot
Takes an nma_inla
object which is obtained by function nma_inla
and print
the model and data information such as model type used in the model.
## S3 method for class 'nma_inla' print(x, digits = 3, ...)
## S3 method for class 'nma_inla' print(x, digits = 3, ...)
x |
An |
digits |
An integer indicating the number of decimal places. |
... |
Further arguments passed to or from other methods. |
The resulting data.frame can be used as data argument in nma_inla
.
The return value is invisible NULL
The smoking cessation dataset describes a network comparing 4 treatments with 24 trials. There are 22 pairwise comparisons and 2 thee-arm trials.
Smokdat
Smokdat
A data frame with 24 observations on the following 10 variables.
r1
Number of events (responses) in the baseline treatment (treatment 1).
r2
Number of events (responses) in the second study arm treatment (treatment 2).
r3
Number of events (responses) in the third study arm treatment (treatment 3).
n1
Total number of study participants in the baseline treatment (treatment 1).
n2
Total number of study participants in the second study arm treatment (treatment 2).
n3
Total number of study participants in the second study arm treatment (treatment 3).
t1
Indicator variable identifying treatment 1.
t2
Indicator variable identifying treatment 2.
t3
Indicator variable identifying treatment 3.
na
Indicator with number of arms in trial.
des
Design, the set of treatments included in each study
Dias, S., Welton, N. J., Caldwell, D. M. and Ades, A. E. (2010) Checking consistency in mixed treatment comparison meta-analysis, Statistics in Medicine, 29:932–944.
Dataset for network meta-regression of stroke prevention in Atrial Fibrillation. A total of 19 studies, and primary endpoint is reported ischaemic stroke. It includes 15 comparators which include fixed low dose warfarin with or without aspirin, aspirin monotherapy, aspirin plus clopidogrel, indobufen, idraparinux, triflusal and ximelagatran. Study level covariates are the proportion of patients with a previous stroke/TIA, proportion of males, mean age, and the duration of study.
Strokedat
Strokedat
An object of class data.frame
with 19 rows and 18 columns.
Batson S, Sutton A, Abrams K (2016) Exploratory Network Meta Regression Analysis of Stroke Prevention in Atrial Fibrillation Fails to Identify Any Interactions with Treatment Effect. PLoS ONE 11
A dataset containing the results from 13 trials examining the efficacy of Bacillus Calmette-Guerin (BCG) vaccine against tuberculosis (TB).
TBdat
TBdat
A data frame with following coloumns
Trial number
number of TB events in treatment arm
number of subjects in treatment arm
number of TB events in control arm
number of subjects in control arm
absolute latitude of the study location
Berkey, C.S., Hoaglin, D.C., Mosteller, F. and Colditz, G.A., 1995. A random-effects regression model for meta-analysis. Statistics in medicine, 14(4), pp.395-411
The thrombolytic dataset describes a network comparing 9 treatments with 50 trials. There are 22 pairwise comparisons and 2 thee-arm trials.
Thrombdat
Thrombdat
A data frame with 50 observations on the following 11 variables.
r1
Number of events (responses) in the baseline treatment (treatment 1).
r2
Number of events (responses) in the second study arm treatment (treatment 2).
r3
Number of events (responses) in the third study arm treatment (treatment 3).
n1
Total number of study participants in the baseline treatment (treatment 1).
n2
Total number of study participants in the second study arm treatment (treatment 2).
n3
Total number of study participants in the second study arm treatment (treatment 3).
t1
Indicator variable identifying treatment 1.
t2
Indicator variable identifying treatment 2.
t3
Indicator variable identifying treatment 3.
na
Indicator with number of arms in trial.
Dias, S., Welton, N. J., Caldwell, D. M. and Ades, A. E. (2010) Checking consistency in mixed treatment comparison meta-analysis, Statistics in Medicine, 29:932–944.
Count mortality statistics in randomised controlled trials of treatments for chronic obstructive pulmonary disease (Woods et al. (2010), Table 1)
Woodsdat
Woodsdat
An object of class data.frame
with 3 rows and 14 columns.
Woods BS, Hawkins N, Scott DA (2010). Network meta-analysis on the log-hazard scale, combining count and hazard ratio statistics accounting for multi-arm trials: A tutorial. BMC Medical Research Methodology 10, 54.