get_resource | R Documentation |
Downloads a single resource from the NHS Open Data platform by resource ID, with optional filtering and column selection.
get_resource(
res_id,
rows = NULL,
row_filters = NULL,
col_select = NULL,
include_context = FALSE
)
res_id |
The resource ID as found on NHS Open Data platform (character). |
rows |
(optional) Maximum number of rows to return (integer). |
row_filters |
(optional) A named list or vector specifying values of columns/fields to keep (e.g., list(Date = 20220216, Sex = "Female")). |
col_select |
(optional) A character vector containing the names of desired columns/fields (e.g., c("Date", "Sex")). |
include_context |
(optional) If |
A tibble with the data.
get_dataset()
for downloading all resources from a given dataset.
res_id <- "ca3f8e44-9a84-43d6-819c-a880b23bd278"
data <- get_resource(res_id)
filters <- list("HB" = "S08000030", "Month" = "202109")
wanted_cols <- c("HB", "Month", "TotalPatientsSeen")
filtered_data <- get_resource(
res_id = res_id,
row_filters = filters,
col_select = wanted_cols
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.