--- title: "Informed Bayesian Model-Averaged Meta-Analysis with Binary Outcomes" author: "František Bartoš" date: "13th of June 2023 (updated: 4th of May 2026)" output: rmarkdown::html_vignette: self_contained: yes bibliography: ../inst/REFERENCES.bib csl: ../inst/apa.csl link-citations: true vignette: > %\VignetteIndexEntry{Informed Bayesian Model-Averaged Meta-Analysis with Binary Outcomes} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} %\VignetteEngine{knitr::rmarkdown_notangle} --- ```{r child = "_vignette-nowrap.md", echo = FALSE, eval = TRUE} ``` ```{r setup, include = FALSE} source("vignette-cache.R", local = knitr::knit_global()) cached_fits <- vignette_cache( name = "v35-bma-glmm-medicine", objects = c("fit_BMA") ) knitr::opts_chunk$set( collapse = TRUE, comment = "#>", eval = vignette_cache_eval(cached_fits), message = FALSE, warning = FALSE, dev = "png", fig.retina = 3 ) if (.Platform$OS.type == "windows") { knitr::opts_chunk$set(dev.args = list(type = "cairo")) } ``` ```{r include = FALSE} library(RoBMA) events_experimental <- c(5, 2) events_control <- c(0, 0) observations_experimental <- c(35, 40) observations_control <- c(39, 40) study_names <- c("Paul 2007", "Shadkam 2010") vignette_cache_load(cached_fits) ``` ```{r include = FALSE, eval = FALSE} # R package version updating library(RoBMA) events_experimental <- c(5, 2) events_control <- c(0, 0) observations_experimental <- c(35, 40) observations_control <- c(39, 40) study_names <- c("Paul 2007", "Shadkam 2010") fit_BMA <- BMA.glmm( ai = events_experimental, n1i = observations_experimental, ci = events_control, n2i = observations_control, slab = study_names, measure = "OR", prior_informed_field = "medicine", prior_informed_subfield = "Acute Respiratory Infections", seed = 1, parallel = TRUE ) vignette_cache_save(cached_fits) ``` **This vignette accompanies the manuscript [Empirical Prior Distributions for Bayesian Meta-Analyses of Binary and Time-to-Event Outcomes](https://doi.org/10.48550/arXiv.2306.11468) preprinted at *arXiv* [@bartos2023empirical].** Bayesian model-averaged meta-analysis can be specified using the binomial likelihood and applied to data with dichotomous outcomes. This vignette illustrates how to do this with an example from @bartos2023empirical, who implemented a binomial-normal Bayesian model-averaged meta-analytic model and developed informed prior distributions for meta-analyses of binary and time-to-event outcomes based on the Cochrane database of systematic reviews. See @bartos2021bayesian for informed prior distributions for meta-analyses of continuous outcomes, highlighted in the [*Informed Bayesian Model-Averaged Meta-Analysis in Medicine*](v34-bma-norm-medicine.html) vignette. ## Binomial-Normal Bayesian Model-Averaged Meta-Analysis We illustrate how to fit the binomial-normal Bayesian model-averaged meta-analysis using the `RoBMA` R package. For this purpose, we reproduce the example of adverse effects of honey in treating acute cough in children from @bartos2023empirical, who reanalyzed two studies with adverse events of nervousness, insomnia, or hyperactivity in the honey vs. no treatment condition that were subjected to a meta-analysis by @oduwole2018honey. We load the `RoBMA` R package and specify the number of adverse events and sample sizes in each arm as described on p. 73 of @oduwole2018honey. ```{r} library(RoBMA) events_experimental <- c(5, 2) events_control <- c(0, 0) observations_experimental <- c(35, 40) observations_control <- c(39, 40) study_names <- c("Paul 2007", "Shadkam 2010") ``` Notice that both studies reported no adverse events in the control group. Using a normal-normal meta-analytic model with log odds ratios would require a continuity correction, which might result in bias. Binomial-normal models allow us to circumvent the issue by modeling the observed proportions directly (see @bartos2023empirical for more details). We fit the binomial-normal Bayesian model-averaged meta-analysis using informed prior distributions based on the `Acute Respiratory Infections` subfield. We use the `BMA.glmm()` function and pass in the per-arm event counts (`ai`, `ci`) and sample sizes (`n1i`, `n2i`); `measure = "OR"` selects the binomial-normal likelihood. The `prior_informed_field` and `prior_informed_subfield` arguments request the informed prior distributions for the individual medical subfields automatically. ```r fit_BMA <- BMA.glmm( ai = events_experimental, n1i = observations_experimental, ci = events_control, n2i = observations_control, slab = study_names, measure = "OR", prior_informed_field = "medicine", prior_informed_subfield = "Acute Respiratory Infections", seed = 1, parallel = TRUE ) ``` with `prior_informed_field = "medicine"` and `prior_informed_subfield = "Acute Respiratory Infections"` corresponding to the $\mu \sim T(0,0.48,3)$ and $\tau \sim InvGamma(1.67, 0.45)$ informed prior distributions on the log-odds-ratio scale (see `?prior_informed` for more details regarding the informed prior distributions). We obtain the output with the `summary()` function. Adding the `conditional = TRUE` argument allows us to inspect the conditional estimates, i.e., the effect size estimate assuming that the models specifying the presence of the effect are true, and the heterogeneity estimates assuming that the models specifying the presence of heterogeneity are true. The summary reports parameter estimates on the log-odds-ratio scale; we use `pooled_effect()` with `transform = "EXP"` to obtain the estimates on the odds-ratio scale. ```{r} summary(fit_BMA, conditional = TRUE, include_mcmc_diagnostics = FALSE) ``` The output from the `summary()` function has three parts. The first one provides a basic summary of the fitted models by component types (presence of the effect and heterogeneity). The table summarizes the prior and posterior probabilities and the inclusion Bayes factors of the individual components. The results show that the inclusion Bayes factor for the effect is similar to the one reported in @bartos2023empirical, $\text{BF}_{10} = 2.63$ and $\text{BF}_{\text{rf}} = 1.30$ (minor differences are a consequence of the product-space estimation algorithm in the new version of the package), giving weak/undecided evidence for the presence of the effect and heterogeneity. The second part under the 'Model-averaged estimates' heading displays the parameter estimates model-averaged across all specified models (i.e., including models specifying the effect size to be zero). These estimates are shrunk towards the null hypotheses of no effect or no heterogeneity in accordance with the posterior uncertainty about the presence of the effect or heterogeneity. We find the model-averaged mean effect OR = 3.39, 95% CI [0.84, 15.14], and a heterogeneity estimate $\tau_\text{logOR} = 0.42$, 95% CI [0.00, 2.59]. The third part under the 'Conditional estimates' heading displays the conditional effect size and heterogeneity estimates (i.e., estimates assuming presence of the effect or heterogeneity) corresponding to the ones reported in @bartos2023empirical, OR = 4.24, 95% CI [0.78, 17.61], and a heterogeneity estimate $\tau_\text{logOR} = 0.75$, 95% CI [0.10, 3.23]. The dedicated helper functions can be used to extract the pooled effect and heterogeneity estimates directly on the odds-ratio scale (assuming the presence of the effect and heterogeneity respectively): ```{r} pooled_effect(fit_BMA, conditional = TRUE, transform = "EXP") pooled_heterogeneity(fit_BMA, conditional = TRUE) ``` We can also visualize the posterior distributions of the effect size and heterogeneity parameters using the `plot()` function. Here, we set the `conditional = TRUE` argument to display the conditional effect size estimate and `prior = TRUE` to include the prior distribution in the plot. ```{r fig_mu_BMA, fig.width = 6, fig.height = 4, out.width = "75%", fig.align = "center"} par(mar = c(4, 4, 0, 4)) plot(fit_BMA, parameter = "mu", prior = TRUE, conditional = TRUE, lwd = 2) ``` Additional visualizations and summaries are demonstrated in the [*Bayesian Meta-Analysis*](v02-bayesian-meta-analysis.html) and [*Informed Bayesian Model-Averaged Meta-Analysis in Medicine*](v34-bma-norm-medicine.html) vignettes. ## References