├── .Rbuildignore ├── .covrignore ├── .github ├── .gitignore ├── ISSUE_TEMPLATE.md └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── area_types.R ├── deprivation_decile.R ├── enhancements.R ├── fingertipsR.R ├── fingertips_data.R ├── indicator_metadata.R ├── indicators.R ├── profiles.R ├── retrieve_data.R ├── select_indicators.R └── utils.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── fingertipsR.Rproj ├── man ├── area_types.Rd ├── category_types.Rd ├── deprivation_decile.Rd ├── fingertipsR.Rd ├── fingertips_data.Rd ├── fingertips_endpoint.Rd ├── fingertips_redred.Rd ├── fingertips_stats.Rd ├── get_fingertips_api.Rd ├── indicator_areatypes.Rd ├── indicator_metadata.Rd ├── indicator_order.Rd ├── indicator_update_information.Rd ├── indicators.Rd ├── indicators_unique.Rd ├── nearest_neighbour_areatypeids.Rd ├── nearest_neighbours.Rd ├── profiles.Rd └── select_indicators.Rd ├── revdep ├── check.R └── checks.rds ├── tests ├── testthat.R └── testthat │ ├── test-area_types.R │ ├── test-deprivation.R │ ├── test-enhancements.R │ ├── test-extract.R │ ├── test-indicators.R │ ├── test-metadata.R │ └── test-utils.R └── vignettes ├── charts-display_area_types-1.png ├── charts-life-expectancy-1.png ├── charts-redred-1.png ├── lifeExpectancy.Rmd ├── lifeExpectancy.Rmd.orig ├── lifeExpectancy.md ├── precompute_vignette.R ├── selectIndicatorsRedRed.Rmd └── selectIndicatorsRedRed.Rmd.orig /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.covrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/.covrignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/area_types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/area_types.R -------------------------------------------------------------------------------- /R/deprivation_decile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/deprivation_decile.R -------------------------------------------------------------------------------- /R/enhancements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/enhancements.R -------------------------------------------------------------------------------- /R/fingertipsR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/fingertipsR.R -------------------------------------------------------------------------------- /R/fingertips_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/fingertips_data.R -------------------------------------------------------------------------------- /R/indicator_metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/indicator_metadata.R -------------------------------------------------------------------------------- /R/indicators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/indicators.R -------------------------------------------------------------------------------- /R/profiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/profiles.R -------------------------------------------------------------------------------- /R/retrieve_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/retrieve_data.R -------------------------------------------------------------------------------- /R/select_indicators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/select_indicators.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/cran-comments.md -------------------------------------------------------------------------------- /fingertipsR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/fingertipsR.Rproj -------------------------------------------------------------------------------- /man/area_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/area_types.Rd -------------------------------------------------------------------------------- /man/category_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/category_types.Rd -------------------------------------------------------------------------------- /man/deprivation_decile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/deprivation_decile.Rd -------------------------------------------------------------------------------- /man/fingertipsR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/fingertipsR.Rd -------------------------------------------------------------------------------- /man/fingertips_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/fingertips_data.Rd -------------------------------------------------------------------------------- /man/fingertips_endpoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/fingertips_endpoint.Rd -------------------------------------------------------------------------------- /man/fingertips_redred.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/fingertips_redred.Rd -------------------------------------------------------------------------------- /man/fingertips_stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/fingertips_stats.Rd -------------------------------------------------------------------------------- /man/get_fingertips_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/get_fingertips_api.Rd -------------------------------------------------------------------------------- /man/indicator_areatypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/indicator_areatypes.Rd -------------------------------------------------------------------------------- /man/indicator_metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/indicator_metadata.Rd -------------------------------------------------------------------------------- /man/indicator_order.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/indicator_order.Rd -------------------------------------------------------------------------------- /man/indicator_update_information.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/indicator_update_information.Rd -------------------------------------------------------------------------------- /man/indicators.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/indicators.Rd -------------------------------------------------------------------------------- /man/indicators_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/indicators_unique.Rd -------------------------------------------------------------------------------- /man/nearest_neighbour_areatypeids.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/nearest_neighbour_areatypeids.Rd -------------------------------------------------------------------------------- /man/nearest_neighbours.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/nearest_neighbours.Rd -------------------------------------------------------------------------------- /man/profiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/profiles.Rd -------------------------------------------------------------------------------- /man/select_indicators.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/man/select_indicators.Rd -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/checks.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/revdep/checks.rds -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-area_types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/tests/testthat/test-area_types.R -------------------------------------------------------------------------------- /tests/testthat/test-deprivation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/tests/testthat/test-deprivation.R -------------------------------------------------------------------------------- /tests/testthat/test-enhancements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/tests/testthat/test-enhancements.R -------------------------------------------------------------------------------- /tests/testthat/test-extract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/tests/testthat/test-extract.R -------------------------------------------------------------------------------- /tests/testthat/test-indicators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/tests/testthat/test-indicators.R -------------------------------------------------------------------------------- /tests/testthat/test-metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/tests/testthat/test-metadata.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/charts-display_area_types-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/charts-display_area_types-1.png -------------------------------------------------------------------------------- /vignettes/charts-life-expectancy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/charts-life-expectancy-1.png -------------------------------------------------------------------------------- /vignettes/charts-redred-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/charts-redred-1.png -------------------------------------------------------------------------------- /vignettes/lifeExpectancy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/lifeExpectancy.Rmd -------------------------------------------------------------------------------- /vignettes/lifeExpectancy.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/lifeExpectancy.Rmd.orig -------------------------------------------------------------------------------- /vignettes/lifeExpectancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/lifeExpectancy.md -------------------------------------------------------------------------------- /vignettes/precompute_vignette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/precompute_vignette.R -------------------------------------------------------------------------------- /vignettes/selectIndicatorsRedRed.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/selectIndicatorsRedRed.Rmd -------------------------------------------------------------------------------- /vignettes/selectIndicatorsRedRed.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/fingertipsR/HEAD/vignettes/selectIndicatorsRedRed.Rmd.orig --------------------------------------------------------------------------------