BCEA

Bayesian Cost Effectiveness Analysis. Given the results of a Bayesian model (possibly based on MCMC) in the form of simulations from the posterior distributions of suitable variables of costs and clinical benefits for two or more interventions, produces a health economic evaluation. Compares one of the interventions (the "reference") to the others ("comparators"). Produces many summary and plots to analyse the results

https://github.com/giabaio/bcea

Science Score: 77.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README
  • Academic publication links
    Links to: joss.theoj.org
  • Committers with academic emails
    1 of 9 committers (11.1%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (17.6%) to scientific vocabulary

Keywords

bayesian-data-analysis cost-effectiveness health-economic-evaluation
Last synced: 6 months ago · JSON representation ·

Repository

Bayesian Cost Effectiveness Analysis. Given the results of a Bayesian model (possibly based on MCMC) in the form of simulations from the posterior distributions of suitable variables of costs and clinical benefits for two or more interventions, produces a health economic evaluation. Compares one of the interventions (the "reference") to the others ("comparators"). Produces many summary and plots to analyse the results

Basic Info
Statistics
  • Stars: 48
  • Watchers: 8
  • Forks: 17
  • Open Issues: 15
  • Releases: 8
Topics
bayesian-data-analysis cost-effectiveness health-economic-evaluation
Created almost 9 years ago · Last pushed 7 months ago
Metadata Files
Readme Changelog Contributing License Citation

README.Rmd

---
title: 'BCEA: Bayesian cost-effectiveness analysis '
format: gfm
execute:
  echo: false
  message: false
  warning: false
output: github_document
---

[![Build Status](https://app.travis-ci.com/n8thangreen/BCEA.svg?branch=dev)](https://app.travis-ci.com/n8thangreen/BCEA)
[![R-CMD-check](https://github.com/n8thangreen/BCEA/actions/workflows/check-standard.yaml/badge.svg?branch=dev)](https://github.com/n8thangreen/BCEA/actions/workflows/check-standard.yaml)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/BCEA)](https://cran.r-project.org/package=BCEA)
[![CRAN_Download_Badge](https://cranlogs.r-pkg.org/badges/BCEA)](https://cran.r-project.org/package=BCEA)
[![CRAN_Download_Badge](https://cranlogs.r-pkg.org/badges/grand-total/BCEA?color=orange)](https://cran.r-project.org/package=BCEA)
[![CodeFactor](https://www.codefactor.io/repository/github/n8thangreen/bcea/badge)](https://www.codefactor.io/repository/github/n8thangreen/bcea)
[![DOI](https://joss.theoj.org/papers/10.21105/joss.04206/status.svg)](https://doi.org/10.21105/joss.04206)

> Perform Bayesian Cost-Effectiveness Analysis in R.

:rocket: This is the **development version** of the `R` package `BCEA` (currently on version `r packageDescription("BCEA")$Version`). The stable version is now release `r utils::available.packages(filters = "CRAN")["BCEA",2]`, on [CRAN](https://cran.r-project.org/web/packages/BCEA/index.html).

## Contents

- [Overview](#introduction)
- [Features](#features)
- [Installation](#installation)
- [Articles](#articles)
- [Further details](#further-details)

## Overview

Given the results of a Bayesian model (possibly based on MCMC) in the form of simulations from the posterior distributions of suitable variables of costs and clinical benefits for two or more interventions, produces a health economic evaluation. Compares one of the interventions (the "reference") to the others ("comparators").

## Features
Main features of `BCEA` include:

* Cost-effectiveness analysis plots, such as CE planes and CEAC
* Summary statistics and tables
* EVPPI calculations and plots

## Installation
Install the [released version from CRAN](https://cran.r-project.org/package=BCEA) with

```r
install.packages("BCEA")
```

The development version (in this repo, which can be updated more quickly and more often than the stable one) can be installed from `r-universe.dev`, using the following command

```r
install.packages(
  'BCEA', 
  repos = c('https://giabaio.r-universe.dev', 'https://cloud.r-project.org')
)
```

Alternatively, you can intall the development version using `remotes`, with the following command.

```r
install.packages("remotes")
remotes::install_github("giabaio/BCEA")
```

**NB**: On Windows machines, you need to install a few dependencies, including [Rtools](https://cran.r-project.org/bin/windows/Rtools/) first, e.g. by running

```r
pkgs <- c("MASS", "Rtools", "remotes")
repos <- "https://cran.rstudio.com"
install.packages(pkgs, repos = repos, dependencies = "Depends")
```

before installing the package using `remotes`.


## Articles
Examples of using specific functions and their different arguments are given in [these articles](https://n8thangreen.github.io/BCEA/articles/index.html):

-  [Get Started](https://n8thangreen.github.io/BCEA/articles/bcea.html)
-  [Set `bcea()` Parameters: Constructor and Setters](https://n8thangreen.github.io/BCEA/articles/Set_bcea_parameters.html)
-  [Cost-Effectiveness Acceptability Curve Plots](https://n8thangreen.github.io/BCEA/articles/ceac.html)
-  [Cost-Effectiveness Efficiency Frontier](https://n8thangreen.github.io/BCEA/articles/ceef.html)
-  [Risk Aversion Analysis](https://n8thangreen.github.io/BCEA/articles/CEriskav.html)
-  [Expected Incremental Benefit Plot](https://n8thangreen.github.io/BCEA/articles/eib.html)
-  [Paired vs Multiple Comparisons](https://n8thangreen.github.io/BCEA/articles/paired_vs_multiple_comps.html)


## Further details
The `pkgdown` site is [here](https://n8thangreen.github.io/BCEA/).
More details on `BCEA` are available in our book [_Bayesian Cost-Effectiveness Analysis with the R Package BCEA_](https://gianluca.statistica.it/books/bcea/) (published in the UseR! Springer series). Also, details about the package, including some references and links to a pdf presentation and some posts on my own blog) are given [here](https://gianluca.statistica.it/software/bcea/).

## License
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

## Contributing
Please submit contributions through `Pull Requests`, following the [contributing guidelines](https://github.com/n8thangreen/BCEA/blob/dev/CONTRIBUTING.md).
To report issues and/or seek support, please file a new ticket in the
[issue](https://github.com/n8thangreen/BCEA/issues) tracker.

Please note that this project is released with a [Contributor Code of Conduct](https://github.com/n8thangreen/BCEA/blob/dev/CONDUCT.md). By participating in this project you agree to abide by its terms.

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Baio"
  given-names: "Gianluca"
  orcid: "https://orcid.org/0000-0003-4314-2570"
- family-names: "Berardi"
  given-names: "Andrea"
  orcid: https://orcid.org/0000-0002-2906-496X
- family-names: "Heath"
  given-names: "Anna"
  orcid: https://orcid.org/0000-0002-7263-4251
- family-names: "Green"
  given-names: "Nathan"
  orcid: https://orcid.org/0000-0003-2745-1736
title: "BCEA: Bayesian Cost-Effectiveness Analysis"
version: 2.4.6
doi: 10.1007/978-3-319-55718-2
date-released: 2023-11-20
url: "https://gianluca.statistica.it/software/bcea/"

GitHub Events

Total
  • Create event: 4
  • Issues event: 2
  • Release event: 3
  • Watch event: 7
  • Delete event: 5
  • Issue comment event: 14
  • Push event: 97
  • Pull request event: 16
Last Year
  • Create event: 4
  • Issues event: 2
  • Release event: 3
  • Watch event: 7
  • Delete event: 5
  • Issue comment event: 14
  • Push event: 97
  • Pull request event: 16

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 625
  • Total Committers: 9
  • Avg Commits per committer: 69.444
  • Development Distribution Score (DDS): 0.296
Past Year
  • Commits: 44
  • Committers: 2
  • Avg Commits per committer: 22.0
  • Development Distribution Score (DDS): 0.114
Top Committers
Name Email Commits
Dr Nathan Green n****n@y****k 440
Gianluca Baio g****o@u****k 114
Gianluca Baio g****o@g****m 31
Gianluca Baio g****a@s****t 23
Andrea Berardi a****i@p****m 9
andbe a****e@g****m 3
Gábor Csárdi c****r@g****m 3
annaheath 3****h 1
Mark Clements m****s@k****e 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 24
  • Total pull requests: 59
  • Average time to close issues: 29 days
  • Average time to close pull requests: 1 day
  • Total issue authors: 9
  • Total pull request authors: 7
  • Average comments per issue: 2.67
  • Average comments per pull request: 0.73
  • Merged pull requests: 42
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 3
  • Pull requests: 16
  • Average time to close issues: N/A
  • Average time to close pull requests: about 5 hours
  • Issue authors: 2
  • Pull request authors: 3
  • Average comments per issue: 0.0
  • Average comments per pull request: 0.31
  • Merged pull requests: 8
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • seabbs (13)
  • giabaio (4)
  • teunbrand (1)
  • serkor1 (1)
  • jSoboil (1)
  • shubhrampandey (1)
  • David-rios (1)
  • n8thangreen (1)
  • joliveiracosta (1)
Pull Request Authors
  • n8thangreen (49)
  • andbe (9)
  • giabaio (4)
  • TimTaylor (2)
  • AndreaBerardi (1)
  • mclements (1)
  • annaheath (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 935 last-month
  • Total docker downloads: 41,971
  • Total dependent packages: 3
  • Total dependent repositories: 6
  • Total versions: 24
  • Total maintainers: 1
cran.r-project.org: BCEA

Bayesian Cost Effectiveness Analysis

  • Versions: 24
  • Dependent Packages: 3
  • Dependent Repositories: 6
  • Downloads: 935 Last month
  • Docker Downloads: 41,971
Rankings
Docker downloads count: 0.6%
Forks count: 4.8%
Stargazers count: 8.4%
Average: 8.7%
Dependent packages count: 10.9%
Dependent repos count: 11.9%
Downloads: 15.9%
Maintainers (1)
Last synced: 7 months ago

Dependencies

DESCRIPTION cran
  • R >= 3.5.0 depends
  • MASS * imports
  • Matrix * imports
  • Rdpack * imports
  • cli >= 3.3.0 imports
  • dplyr * imports
  • ggplot2 * imports
  • graphics * imports
  • gridExtra * imports
  • purrr * imports
  • reshape2 * imports
  • rlang * imports
  • scales * imports
  • INLA * suggests
  • MCMCvis * suggests
  • RColorBrewer * suggests
  • coda * suggests
  • grid * suggests
  • knitr * suggests
  • markdown * suggests
  • mgcv * suggests
  • plotly * suggests
  • rjags * suggests
  • rmarkdown * suggests
  • rstan * suggests
  • splancs * suggests
  • testthat >= 2.1.0 suggests
  • vdiffr * suggests
  • withr * suggests
.github/workflows/check-standard.yaml actions
  • actions/checkout v2 composite
  • r-lib/actions/check-r-package v2 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite