
R implementation of eq5dsuite — a standardised suite of tools for EQ-5D analysis across R, Stata, and Excel. This package provides a comprehensive set of functions for calculating EQ-5D values and analysing EQ-5D data following the recommendations of Devlin et al. (2020).
update_value_sets() — install newly published value sets
without waiting for a CRAN updatedplyr and ggplot2 for
reproducible, script-based analysesInstall the released version from CRAN:
install.packages("eq5dsuite")Install the development version from GitHub:
# install.packages("remotes")
remotes::install_github("MathsInHealth/eq5dsuite-r")library(eq5dsuite)
# Calculate EQ-5D-3L values using the UK value set
eq5d3l(
data.frame(mo = 1, sc = 2, ua = 3, pd = 2, ad = 1),
country = "UK",
dim.names = c("mo", "sc", "ua", "pd", "ad")
)
# View available value sets
eqvs_display(version = "3L")
# Check for newly published value sets
update_value_sets()
# Launch the Shiny application
run_app()?eq5dsuitebrowseVignettes("eq5dsuite")Available vignettes: - Getting started — installation, value calculation, value set management - Analysing EQ-5D data — complete workflow using NHS PROMs data - Crosswalk methods — when and how to use each crosswalk method - Custom value sets — adding, saving, and managing custom value sets - Keeping value sets up to date — using the online update system
Country-specific value sets are maintained at:
New value sets are added as they are published in the literature. Use
update_value_sets() to install them without waiting for a
CRAN package update.
eq5dsuite is available across three platforms:
| Platform | Repository | Status |
|---|---|---|
| R | eq5dsuite-r | Available on CRAN |
| Stata | eq5dsuite-stata | Available |
| Excel | eq5dsuite-excel | Available |
For R-specific issues please use the issue tracker in this repository.
For cross-platform concerns please use the umbrella issue tracker.
For general enquiries contact info@mathsinhealth.com.
If you use eq5dsuite in your research, please cite:
Estévez-Carrillo A, Rivero-Arias O, Schlackow I, Rand K. eq5dsuite: An R Package for Describing and Analysing EQ-5D Data. The R Journal (forthcoming).
This package is licensed under the GPL (>= 2).