├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── check-standard.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.Rmd ├── NEWS.md ├── R ├── data.R ├── eq5d-package.R ├── eq5d.R ├── eq5d3l.R ├── eq5d5l.R ├── eq5dcf.R ├── eq5dcw.R ├── eq5dds.R ├── eq5dlfs.R ├── eq5dlss.R ├── eq5dmap.R ├── eq5drcw.R ├── eq5dy3l.R ├── eqhpg.R ├── eqhsdi.R ├── eqpchc.R ├── eqps.R ├── eqshannon.R ├── helpers.R ├── imports.R ├── shiny.R └── sysdata.rda ├── README.Rmd ├── README.md ├── appveyor.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── CW.csv ├── DSU3L.csv ├── DSU3LRANGE.csv ├── DSU5L.csv ├── DSU5LRANGE.csv ├── RCW.csv ├── TTO.csv ├── VAS.csv ├── VH2021_probs.csv ├── VT.csv ├── Y.csv ├── references.csv └── save-data.R ├── inst ├── extdata │ ├── eq5d3l_example.csv │ ├── eq5d3l_example.xlsx │ ├── eq5d3l_five_digit_example.csv │ ├── eq5d3l_five_digit_example.xlsx │ ├── eq5d5l_example.csv │ └── eq5d5l_example.xlsx └── shiny │ ├── server.R │ ├── ui.R │ └── www │ └── images │ ├── icons8-microsoft-excel-48.png │ ├── shiny_app_dsu_dimension.png │ ├── shiny_app_dsu_utility.png │ ├── shiny_app_dsu_utility_bwidth.png │ └── shiny_app_excel_scores.png ├── man ├── CW.Rd ├── DSU3L.Rd ├── DSU5L.Rd ├── RCW.Rd ├── RCWVH.Rd ├── TTO.Rd ├── VAS.Rd ├── VT.Rd ├── Y3L.Rd ├── eq5d-package.Rd ├── eq5d.Rd ├── eq5d3l.Rd ├── eq5d5l.Rd ├── eq5dcf.Rd ├── eq5dcw.Rd ├── eq5dds.Rd ├── eq5dmap.Rd ├── eq5drcw.Rd ├── eq5dy.Rd ├── eq5dy3l.Rd ├── figures │ ├── README-hpg-1.png │ ├── README-hsdi-1.png │ ├── shiny_app_excel_scores.png │ ├── shiny_app_screenshot_barplot.png │ ├── shiny_app_screenshot_density.png │ ├── shiny_app_screenshot_ecdf.png │ ├── shiny_app_screenshot_hpg.png │ ├── shiny_app_screenshot_hsdc.png │ ├── shiny_app_screenshot_main.png │ ├── shiny_app_screenshot_posthoc.png │ └── shiny_app_screenshot_radar.png ├── get_all_health_states.Rd ├── get_dimensions_from_health_states.Rd ├── get_health_states_from_dimensions.Rd ├── hpg.Rd ├── hsdi.Rd ├── lfs.Rd ├── lss.Rd ├── pchc.Rd ├── ps.Rd ├── shannon.Rd ├── shiny_eq5d.Rd └── valuesets.Rd ├── tests ├── testdata │ ├── eq5dcf.csv │ ├── hpg_3l_uk_tto_no_problems_false.csv │ ├── pchc_noprob_false_totals_false.csv │ ├── pchc_noprob_false_totals_false_dim_mo.csv │ ├── pchc_noprob_false_totals_true.csv │ ├── pchc_noprob_false_totals_true_dim_mo.csv │ ├── pchc_noprob_true_totals_false.csv │ ├── pchc_noprob_true_totals_false_dim_mo.csv │ ├── pchc_noprob_true_totals_true.csv │ ├── pchc_noprob_true_totals_true_dim_mo.csv │ ├── pchc_nototals.csv │ ├── post.csv │ ├── post_df.csv │ ├── pre.csv │ └── pre_df.csv ├── testthat.R └── testthat │ ├── test-eq5d.R │ ├── test-eq5d3l.R │ ├── test-eq5d5l.R │ ├── test-eq5dcf.R │ ├── test-eq5dcw.R │ ├── test-eq5dds.R │ ├── test-eq5dlfs.R │ ├── test-eq5dlss.R │ ├── test-eq5dmap.R │ ├── test-eq5drcw.R │ ├── test-eq5dy3l.R │ ├── test-eqhpg.R │ ├── test-eqhsdi.R │ ├── test-eqpchc.R │ ├── test-eqps.R │ ├── test-eqshannon.R │ └── test-helpers.R └── vignettes ├── .gitignore ├── eq5d.Rmd └── eq5d_nice_dsu.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Fraser Morton 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/NEWS.Rmd -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/data.R -------------------------------------------------------------------------------- /R/eq5d-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5d-package.R -------------------------------------------------------------------------------- /R/eq5d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5d.R -------------------------------------------------------------------------------- /R/eq5d3l.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5d3l.R -------------------------------------------------------------------------------- /R/eq5d5l.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5d5l.R -------------------------------------------------------------------------------- /R/eq5dcf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5dcf.R -------------------------------------------------------------------------------- /R/eq5dcw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5dcw.R -------------------------------------------------------------------------------- /R/eq5dds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5dds.R -------------------------------------------------------------------------------- /R/eq5dlfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5dlfs.R -------------------------------------------------------------------------------- /R/eq5dlss.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5dlss.R -------------------------------------------------------------------------------- /R/eq5dmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5dmap.R -------------------------------------------------------------------------------- /R/eq5drcw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5drcw.R -------------------------------------------------------------------------------- /R/eq5dy3l.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eq5dy3l.R -------------------------------------------------------------------------------- /R/eqhpg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eqhpg.R -------------------------------------------------------------------------------- /R/eqhsdi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eqhsdi.R -------------------------------------------------------------------------------- /R/eqpchc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eqpchc.R -------------------------------------------------------------------------------- /R/eqps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eqps.R -------------------------------------------------------------------------------- /R/eqshannon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/eqshannon.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/imports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/imports.R -------------------------------------------------------------------------------- /R/shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/shiny.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/CW.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/CW.csv -------------------------------------------------------------------------------- /data-raw/DSU3L.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/DSU3L.csv -------------------------------------------------------------------------------- /data-raw/DSU3LRANGE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/DSU3LRANGE.csv -------------------------------------------------------------------------------- /data-raw/DSU5L.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/DSU5L.csv -------------------------------------------------------------------------------- /data-raw/DSU5LRANGE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/DSU5LRANGE.csv -------------------------------------------------------------------------------- /data-raw/RCW.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/RCW.csv -------------------------------------------------------------------------------- /data-raw/TTO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/TTO.csv -------------------------------------------------------------------------------- /data-raw/VAS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/VAS.csv -------------------------------------------------------------------------------- /data-raw/VH2021_probs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/VH2021_probs.csv -------------------------------------------------------------------------------- /data-raw/VT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/VT.csv -------------------------------------------------------------------------------- /data-raw/Y.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/Y.csv -------------------------------------------------------------------------------- /data-raw/references.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/references.csv -------------------------------------------------------------------------------- /data-raw/save-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/data-raw/save-data.R -------------------------------------------------------------------------------- /inst/extdata/eq5d3l_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/extdata/eq5d3l_example.csv -------------------------------------------------------------------------------- /inst/extdata/eq5d3l_example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/extdata/eq5d3l_example.xlsx -------------------------------------------------------------------------------- /inst/extdata/eq5d3l_five_digit_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/extdata/eq5d3l_five_digit_example.csv -------------------------------------------------------------------------------- /inst/extdata/eq5d3l_five_digit_example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/extdata/eq5d3l_five_digit_example.xlsx -------------------------------------------------------------------------------- /inst/extdata/eq5d5l_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/extdata/eq5d5l_example.csv -------------------------------------------------------------------------------- /inst/extdata/eq5d5l_example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/extdata/eq5d5l_example.xlsx -------------------------------------------------------------------------------- /inst/shiny/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/shiny/server.R -------------------------------------------------------------------------------- /inst/shiny/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/shiny/ui.R -------------------------------------------------------------------------------- /inst/shiny/www/images/icons8-microsoft-excel-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/shiny/www/images/icons8-microsoft-excel-48.png -------------------------------------------------------------------------------- /inst/shiny/www/images/shiny_app_dsu_dimension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/shiny/www/images/shiny_app_dsu_dimension.png -------------------------------------------------------------------------------- /inst/shiny/www/images/shiny_app_dsu_utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/shiny/www/images/shiny_app_dsu_utility.png -------------------------------------------------------------------------------- /inst/shiny/www/images/shiny_app_dsu_utility_bwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/shiny/www/images/shiny_app_dsu_utility_bwidth.png -------------------------------------------------------------------------------- /inst/shiny/www/images/shiny_app_excel_scores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/inst/shiny/www/images/shiny_app_excel_scores.png -------------------------------------------------------------------------------- /man/CW.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/CW.Rd -------------------------------------------------------------------------------- /man/DSU3L.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/DSU3L.Rd -------------------------------------------------------------------------------- /man/DSU5L.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/DSU5L.Rd -------------------------------------------------------------------------------- /man/RCW.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/RCW.Rd -------------------------------------------------------------------------------- /man/RCWVH.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/RCWVH.Rd -------------------------------------------------------------------------------- /man/TTO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/TTO.Rd -------------------------------------------------------------------------------- /man/VAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/VAS.Rd -------------------------------------------------------------------------------- /man/VT.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/VT.Rd -------------------------------------------------------------------------------- /man/Y3L.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/Y3L.Rd -------------------------------------------------------------------------------- /man/eq5d-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5d-package.Rd -------------------------------------------------------------------------------- /man/eq5d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5d.Rd -------------------------------------------------------------------------------- /man/eq5d3l.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5d3l.Rd -------------------------------------------------------------------------------- /man/eq5d5l.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5d5l.Rd -------------------------------------------------------------------------------- /man/eq5dcf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5dcf.Rd -------------------------------------------------------------------------------- /man/eq5dcw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5dcw.Rd -------------------------------------------------------------------------------- /man/eq5dds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5dds.Rd -------------------------------------------------------------------------------- /man/eq5dmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5dmap.Rd -------------------------------------------------------------------------------- /man/eq5drcw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5drcw.Rd -------------------------------------------------------------------------------- /man/eq5dy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5dy.Rd -------------------------------------------------------------------------------- /man/eq5dy3l.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/eq5dy3l.Rd -------------------------------------------------------------------------------- /man/figures/README-hpg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/README-hpg-1.png -------------------------------------------------------------------------------- /man/figures/README-hsdi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/README-hsdi-1.png -------------------------------------------------------------------------------- /man/figures/shiny_app_excel_scores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_excel_scores.png -------------------------------------------------------------------------------- /man/figures/shiny_app_screenshot_barplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_screenshot_barplot.png -------------------------------------------------------------------------------- /man/figures/shiny_app_screenshot_density.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_screenshot_density.png -------------------------------------------------------------------------------- /man/figures/shiny_app_screenshot_ecdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_screenshot_ecdf.png -------------------------------------------------------------------------------- /man/figures/shiny_app_screenshot_hpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_screenshot_hpg.png -------------------------------------------------------------------------------- /man/figures/shiny_app_screenshot_hsdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_screenshot_hsdc.png -------------------------------------------------------------------------------- /man/figures/shiny_app_screenshot_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_screenshot_main.png -------------------------------------------------------------------------------- /man/figures/shiny_app_screenshot_posthoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_screenshot_posthoc.png -------------------------------------------------------------------------------- /man/figures/shiny_app_screenshot_radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/figures/shiny_app_screenshot_radar.png -------------------------------------------------------------------------------- /man/get_all_health_states.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/get_all_health_states.Rd -------------------------------------------------------------------------------- /man/get_dimensions_from_health_states.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/get_dimensions_from_health_states.Rd -------------------------------------------------------------------------------- /man/get_health_states_from_dimensions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/get_health_states_from_dimensions.Rd -------------------------------------------------------------------------------- /man/hpg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/hpg.Rd -------------------------------------------------------------------------------- /man/hsdi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/hsdi.Rd -------------------------------------------------------------------------------- /man/lfs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/lfs.Rd -------------------------------------------------------------------------------- /man/lss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/lss.Rd -------------------------------------------------------------------------------- /man/pchc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/pchc.Rd -------------------------------------------------------------------------------- /man/ps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/ps.Rd -------------------------------------------------------------------------------- /man/shannon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/shannon.Rd -------------------------------------------------------------------------------- /man/shiny_eq5d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/shiny_eq5d.Rd -------------------------------------------------------------------------------- /man/valuesets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/man/valuesets.Rd -------------------------------------------------------------------------------- /tests/testdata/eq5dcf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/eq5dcf.csv -------------------------------------------------------------------------------- /tests/testdata/hpg_3l_uk_tto_no_problems_false.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/hpg_3l_uk_tto_no_problems_false.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_noprob_false_totals_false.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_noprob_false_totals_false.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_noprob_false_totals_false_dim_mo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_noprob_false_totals_false_dim_mo.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_noprob_false_totals_true.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_noprob_false_totals_true.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_noprob_false_totals_true_dim_mo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_noprob_false_totals_true_dim_mo.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_noprob_true_totals_false.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_noprob_true_totals_false.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_noprob_true_totals_false_dim_mo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_noprob_true_totals_false_dim_mo.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_noprob_true_totals_true.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_noprob_true_totals_true.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_noprob_true_totals_true_dim_mo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_noprob_true_totals_true_dim_mo.csv -------------------------------------------------------------------------------- /tests/testdata/pchc_nototals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pchc_nototals.csv -------------------------------------------------------------------------------- /tests/testdata/post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/post.csv -------------------------------------------------------------------------------- /tests/testdata/post_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/post_df.csv -------------------------------------------------------------------------------- /tests/testdata/pre.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pre.csv -------------------------------------------------------------------------------- /tests/testdata/pre_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testdata/pre_df.csv -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5d.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5d3l.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5d3l.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5d5l.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5d5l.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5dcf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5dcf.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5dcw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5dcw.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5dds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5dds.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5dlfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5dlfs.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5dlss.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5dlss.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5dmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5dmap.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5drcw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5drcw.R -------------------------------------------------------------------------------- /tests/testthat/test-eq5dy3l.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eq5dy3l.R -------------------------------------------------------------------------------- /tests/testthat/test-eqhpg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eqhpg.R -------------------------------------------------------------------------------- /tests/testthat/test-eqhsdi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eqhsdi.R -------------------------------------------------------------------------------- /tests/testthat/test-eqpchc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eqpchc.R -------------------------------------------------------------------------------- /tests/testthat/test-eqps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eqps.R -------------------------------------------------------------------------------- /tests/testthat/test-eqshannon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-eqshannon.R -------------------------------------------------------------------------------- /tests/testthat/test-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/tests/testthat/test-helpers.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/eq5d.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/vignettes/eq5d.Rmd -------------------------------------------------------------------------------- /vignettes/eq5d_nice_dsu.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragla/eq5d/HEAD/vignettes/eq5d_nice_dsu.Rmd --------------------------------------------------------------------------------