bmeta - Bayesian meta-analysis & meta-regression in R
bmeta
is a R package that provides a collection of functions for conducting meta-analyses and meta-regressions under a Bayesian context, using JAGS. The package includes functions for computing various effect size or outcome measures (e.g. odds ratios, mean difference and incidence rate ratio) for different types of data (e.g. binary, continuous and count, respectively), based on Markov Chain Monte Carlo (MCMC) simulations. Users are allowed to select fixed- and random-effects models with different prior distributions for the data and the relevant parameters. Meta-regression can be also performed if the effect of additional covariates are considered. Furthermore, the package provides functions for creating posterior distributions and forest plot to display main model output. Traceplots and some other diagnostic plots are also available for assessing model fit and performance.
bmeta
works by allowing the user to specify the set of options in a standardised way in the R command terminal. Currently, bmeta
implements 22 models; when the user has selected the required configuration (random vs fixed effects; choice of outcome and prior distributions; presence of covariates), bmeta writes a suitable JAGS file in the working directory. This is used to call the package R2Jags
and perform the actual analysis, but can also be considered as a sort of “template” - the user can then modify to extend the modelling, modify the priors in a way that is not automatically done by bmeta, or use it for future references.
Installation
There are two ways of installing bmeta
. A “stable” version is packaged and available from CRAN. You can install using the following commands.
install.packages("bmeta")
NB: bmeta
requires that JAGS is also installed on your machine. You can find details of JAGS installation here.
The “development” version of bmeta
is available from this GitHub repository - it will usually be updated more frequently and may be continuously tested. On Windows machines, you need to install a few dependencies, including Rtools first, e.g. by running
<- c("R2jags","forestplot","Rtools","devtools")
pkgs <- c("https://cran.rstudio.com")
repos install.packages(pkgs,repos=repos,dependencies = "Depends")
before installing the package using devtools
:
::install_github("giabaio/bmeta") devtools
Under Linux or MacOS, it is sufficient to install the package via devtools
:
install.packages("devtools")
:install_github("giabaio/bmeta") devtools
A full documentation guide available here, including a complete description of the over 20 models implemented in bmeta, as well as worked out examples.
Web-application
There is also a web-application front end to bmeta
— unsurprisingly, this is called bmetaweb
and is hosted here. bmetaweb
assumes that the studies included only have two arms comparing a single intervention and users must provide essential information of the two arms for comparison. For example, for the binary data, users must provide the sample size of both case and control arm and the events observed in the two arms. If meta-regression models are selected, users need to pay special attention to the format of covariates which are categorical and this includes specifying a baseline category and stratify each of the rest categories into dummy variables.
Last updated: 17 July 2023