Skip to contents

Returns a list of all external resources

Usage

cvd_external_resource()

Value

Tibble of details for external resources

Details

CVD Prevent API documentation: External resources

Examples

# Here we show the first five external resources:
cvd_external_resource() |>
  dplyr::filter(ExternalResourceID < 10) |>
  dplyr::select(ExternalResourceCategory, ExternalResourceSource, ExternalResourceTitle) |>
  dplyr::group_by(ExternalResourceCategory)
#> # A tibble: 5 × 3
#> # Groups:   ExternalResourceCategory [3]
#>   ExternalResourceCategory ExternalResourceSource          ExternalResourceTitle
#>   <chr>                    <chr>                           <chr>                
#> 1 Data Packs               Public Health England           Cardiovascular Disea…
#> 2 Data Packs               NHS England                     Equality and Health …
#> 3 Toolkits                 NHS Digital                     Weight Management Pr…
#> 4 Toolkits                 Primary Care Cardiovascular So… CVD – identification…
#> 5 Stratification tools     UCL Partners                    Search and risk stra…