Augments data
with an additional column holding the common English name of the country in which the referendum took place.
Arguments
- data
RDB referendum data as returned by
rfrnds()
. A data frame that at minimum contains the columncountry_code
(with ISO 3166-1 alpha-2 or ISO 3166-3 alpha-4 codes).
Value
A tibble.
See also
Other referendum data augmentation functions:
add_country_code_continual()
,
add_country_code_long()
,
add_country_name_long()
,
add_former_country_flag()
,
add_period()
,
add_turnout()
,
add_urls()
,
add_world_regions()
Examples
rdb::rfrnds(quiet = TRUE) |>
rdb:::add_country_name() |>
dplyr::select(id,
starts_with("country_"))
#> # A tibble: 17,889 × 3
#> id country_code country_name
#> <chr> <fct> <fct>
#> 1 670cd145c3cd67046058015c CH Switzerland
#> 2 66fff490c3cd670460580111 LI Liechtenstein
#> 3 66ffdfe3c3cd6704605800fc CH Switzerland
#> 4 66f686cfc3cd6704605800a0 CH Switzerland
#> 5 66f68317c3cd67046058009c CH Switzerland
#> 6 66d6da9cc3cd670460580053 CH Switzerland
#> 7 66cde603c3cd67046057fff5 CH Switzerland
#> 8 66c46f86c3cd67046057ff53 CH Switzerland
#> 9 66c46cf6c3cd67046057ff4f CH Switzerland
#> 10 66c46c3ac3cd67046057ff4b CH Switzerland
#> # ℹ 17,879 more rows