https://github.com/dark-peak-analytics/sicksickerpack_vc

This is a fork of the R package version of the Sick Sicker model originally developed by the DARTH group. This fork is used to demo collaboration on GitHub

https://github.com/dark-peak-analytics/sicksickerpack_vc

Science Score: 13.0%

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

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 4 DOI reference(s) in README
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.2%) to scientific vocabulary
Last synced: 6 months ago · JSON representation

Repository

This is a fork of the R package version of the Sick Sicker model originally developed by the DARTH group. This fork is used to demo collaboration on GitHub

Basic Info
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Fork of dark-peak-analytics/sicksickerPack
Created about 1 year ago · Last pushed about 1 year ago

https://github.com/dark-peak-analytics/sicksickerPack_VC/blob/main/

# NOTE:
This is a fork of [the R package version of the Sick Sicker model](https://github.com/dark-peak-analytics/sicksickerPack) developed initially by the DARTH group. This fork is used to demo collaboration on GitHub.

# sicksickerPack

This repository houses the case study R package `sicksickerPack` described in a working paper:

> Smith R, Mohammed W and Schneider P. Packaging cost-effectiveness models in R: A tutorial. version 1; peer review: awaiting peer review. Wellcome Open Res 2023, 8:419 [https://doi.org/10.12688/wellcomeopenres.19656.1](https://doi.org/10.12688/wellcomeopenres.19656.1)

# **Packaging cost-effectiveness models in R: A tutorial**

[Robert Smith](https://www.linkedin.com/in/robert-smith-53b28438)1,2, Wael Mohammed1,2 & Paul Schneider1,2

1 [University of Sheffield](https://www.sheffield.ac.uk/scharr), University of Sheffield, Sheffield, UK   
2 [Dark Peak Analytics](https://darkpeakanalytics.com/), Sheffield, UK

>#### **Background**
>
>The use of programming languages such as R in health economics and decision science is increasing, and brings numerous benefits including increas- ing model development efficiency, improving transparency, and reducing human error. However, there is limited guidance on how to best develop models using R. So far, no clear consensus has emerged.
>
>#### **Methods**
>
>We present the advantages of creating health economic models as R packages - structured collections of functions, data sets, tests, and documentation. Assuming an intermediate understanding of R, we provide a tutorial to demonstrate how to construct a basic R package for health economic evaluation. All source code used in or referenced by this paper is available under an open source licence.
>
>#### **Results**
>
>We use the Sick Sicker Model as a case study applying the steps from the tutorial to standardise model development, documentation and aid review. This can improve the distribution of code, thereby streamlining model development, and improve methods in health economic evaluation.
>
>#### **Conclusions**
>
>R Packages offer a valuable framework for enhancing the quality and transparency of health economic evaluation models. Embracing better, more standardised software development practices, while fostering a collaborative culture, has the potential to significantly improve the quality of health economic models, and, ultimately, support better decision making in healthcare.

## Installation

To test the functionality of this package, install the development version of the package using the devtools package. The package has a vignette source file built into an HTML document during installation. However, as highlighted below, users can install the package without building the included vignette.

#### Installation - *_without_* vignette:
``` r
devtools::install_github("dark-peak-analytics/sicksickerPack")
```
#### Installation - *_building_* vignette:
``` r
devtools::install_github( 
  repo = "dark-peak-analytics/sicksickerPack",
  dependencies = TRUE, 
  build_vignettes = TRUE
)
```

## Quick start

### Load the package.

``` r
library(sicksickerPack)
```

### Deterministic Model 

Run the deterministic sick-sicker model with the dummy parameters.

``` r
run_sickSicker_model(
  params_ = dummy_sickSickerModel_params
)
```

### Probabilistic Model 

Run the probabilistic sick-sicker model with the dummy PSA parameters.

``` r
run_psa(
  model_func_ = sicksickerPack::run_sickSicker_model,
  model_func_args_ = list(
    age_init_ = 25,
    age_max_  = 55,
    discount_rate_ = 0.035
  ),
  psa_params_names_ = dummy_sickSickerModel_psa_params$
    psa_params_names,
  psa_params_dists_ = dummy_sickSickerModel_psa_params$
    psa_params_dists,
  psa_params_dists_args_ = dummy_sickSickerModel_psa_params$
    psa_params_dists_args,
  n_sim_ = 100
)
```
## Project folder structure

The project follows a typical R package structure as below

```
.
 .gitignore            # Names of files to be ignored by Git
 .Rbuildignore         # Names of files to be ignored by R-CMD
 data/                 # Package data files
 data-raw/             # Package data-construction files
 DESCRIPTION           # Package description file
 inst/                 # Package post-installation deployed files
 LICENSE               # License file
 LICENSE.md            # License description file
 man/                  # Functions' documentation
 NAMESPACE            
 R/                    # Functions' definitions
 README.md  
 sicksickerPack.Rproj 
 tests/                # Functions' tests  
 vignettes/            # Vignettes' source files
```

## Funding

Rob, Wael & Paul were joint funded by the Wellcome Trust Doctoral Training Centre in Public Health Economics and Decision Science [108903] and the University of Sheffield. They now all work for [Dark Peak Analytics](https://www.darkpeakanalytics.com). Please contact  with any queries.

Owner

  • Name: Dark Peak Analytics
  • Login: dark-peak-analytics
  • Kind: organization
  • Email: contact@darkpeakanalytics.com
  • Location: United Kingdom

Consulting at the intersection of health economics and data science.

GitHub Events

Total
  • Push event: 1
  • Fork event: 1
Last Year
  • Push event: 1
  • Fork event: 1