Nothing
#' Add country codes to a data frame
#'
#' @param adf tibble of data
#'
#' @keywords internal
#' @noRd
#' @return tibble
#'
add_country_codes <- function(adf) {
# get country codes from somewhere
country_codes <- jsonlite::fromJSON("https://raw.githubusercontent.com/dieghernan/Country-Codes-and-International-Organizations/master/outputs/Countrycodesfull.json") %>%
dplyr::mutate(
NAME.EN = ifelse(NAME.EN == "Czechia", "Czech Republic", NAME.EN),
NAME.EN = ifelse(NAME.EN == "Hong Kong SAR China", "Hong Kong", NAME.EN),
NAME.EN = ifelse(NAME.EN == "Macao SAR China", "Macao", NAME.EN),
NAME.EN = ifelse(NAME.EN == "South Korea", "Republic of Korea", NAME.EN),
)
# merge in country codes, and then pivot to covid19R standard and return
location_code_merge_pivot(country_codes, adf,
name_col = "NAME.EN",
code_col = "ISO_3166_2",
code_name = "iso_3166_2"
)
}
#' Add subregion codes to a data frame
#'
#' @param adf tibble of data
#'
#' @keywords internal
#' @noRd
#' @return tibble
#'
add_subregion_codes <- function(adf) {
# get subregional codes
# from https://github.com/olahol/iso-3166-2.js
subregion_codes <- load_subregion_codes()
# make a data frame with modified locations for correct merging with
# international standards
adf <- adf %>%
dplyr::mutate(old_loc = location)
# merge in codes and pivot to covid19R standard and return
adf <- location_code_merge_pivot(subregion_codes,
adf %>% subregion_name_filter(),
name_col = "name",
code_col = "iso_3166_2"
) %>%
dplyr::mutate(location = old_loc) %>%
dplyr::select(-old_loc)
# deal with codes that didn't go through
adf2 <- adf %>%
dplyr::filter(is.na(location_code)) %>%
dplyr::select(-location_code, -location_code_type) %>%
dplyr::mutate(
old_loc = location,
location = ifelse(is.na(alternative_name), location, alternative_name)
)
adf <- adf %>%
dplyr::filter(!is.na(location_code))
adf2 <- location_code_merge_pivot(subregion_codes,
adf2 %>% subregion_name_filter(),
name_col = "name",
code_col = "iso_3166_2"
) %>%
dplyr::mutate(location = old_loc) %>%
dplyr::select(-old_loc)
# merge codes that didn't go through with codes that did and return
# note - this still isn't perfect, as apple's location names are weird.
dplyr::bind_rows(adf, adf2)
}
#' Add city codes to a data frame
#'
#' @param adf tibble of data
#' @keywords internal
#' @noRd
#' @return tibble
#'
add_city_codes <- function(adf) {
unlocode <- load_un_locode()
# merge in codes and pivot to covid19R standard and return
adf <- location_code_merge_pivot(unlocode, adf,
name_col = "name_en",
code_col = "un_locode"
)
adf
}
#' Merge and pivot data in a standardized way
#'
#' @param codes tibble with a column containing standardized codes
#' @param adf tibble of data
#' @param name_col what column in the codes tibble contains
#' the name matching info
#' @param code_col what column in the codes tibble contains
#' the standardized codes
#' @param code_name what is the name of the code standard -
#' defaults to the same as code_col
#'
#' @keywords internal
#' @noRd
#' @return
#'
location_code_merge_pivot <- function(codes, adf, name_col,
code_col, code_name = code_col) {
dplyr::left_join(adf,
codes %>%
dplyr::select({{ name_col }}, {{ code_col }}),
by = c("location" = name_col)
) %>%
tidyr::pivot_longer(
cols = !!code_col,
names_to = "location_code_type",
values_to = "location_code"
) %>%
dplyr::mutate(location_code_type = code_name)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.