├── .Rbuildignore ├── .gitattributes ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── globals.R ├── helpers.R ├── helpers_test.R ├── other_models.R ├── prep_data_for_use.R ├── prevent_equations.R └── sysdata.rda ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── man ├── app.Rd ├── estimate_risk.Rd └── figures │ └── logo.png ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── preventr.Rproj ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── helpers_test.md │ └── prevent_equations.md │ ├── test-helpers.R │ ├── test-helpers_test.R │ ├── test-other_models.R │ └── test-prevent_equations.R └── vignettes ├── .gitignore ├── articles ├── .gitignore └── race-ethnicity-in-predictive-models.Rmd └── using-data-frame.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: preventr authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/helpers_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/R/helpers_test.R -------------------------------------------------------------------------------- /R/other_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/R/other_models.R -------------------------------------------------------------------------------- /R/prep_data_for_use.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/R/prep_data_for_use.R -------------------------------------------------------------------------------- /R/prevent_equations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/R/prevent_equations.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/man/app.Rd -------------------------------------------------------------------------------- /man/estimate_risk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/man/estimate_risk.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /preventr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/preventr.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/helpers_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/tests/testthat/_snaps/helpers_test.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/prevent_equations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/tests/testthat/_snaps/prevent_equations.md -------------------------------------------------------------------------------- /tests/testthat/test-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/tests/testthat/test-helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-helpers_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/tests/testthat/test-helpers_test.R -------------------------------------------------------------------------------- /tests/testthat/test-other_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/tests/testthat/test-other_models.R -------------------------------------------------------------------------------- /tests/testthat/test-prevent_equations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/tests/testthat/test-prevent_equations.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/race-ethnicity-in-predictive-models.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/vignettes/articles/race-ethnicity-in-predictive-models.Rmd -------------------------------------------------------------------------------- /vignettes/using-data-frame.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingmayer/preventr/HEAD/vignettes/using-data-frame.Rmd --------------------------------------------------------------------------------