Skip to contents

Augments data with an additional column holding the current or former three-letter ISO 3166-1 alpha-3 code of the country in which the referendum took place (see ISO 3166-3 for former country codes).

Usage

add_country_code_long(data)

Arguments

data

RDB referendum data as returned by rfrnds(). A data frame that at minimum contains the column country_code (with ISO 3166-1 alpha-2 or ISO 3166-3 alpha-4 codes).

Value

A tibble.

Examples

rdb::rfrnds(quiet = TRUE) |>
  rdb:::add_country_code_long() |>
  dplyr::select(id,
                starts_with("country_"))
#> # A tibble: 17,889 × 4
#>    id                       country_code country_code_long country_name 
#>    <chr>                    <fct>        <fct>             <fct>        
#>  1 670cd145c3cd67046058015c CH           CHE               Switzerland  
#>  2 66fff490c3cd670460580111 LI           LIE               Liechtenstein
#>  3 66ffdfe3c3cd6704605800fc CH           CHE               Switzerland  
#>  4 66f686cfc3cd6704605800a0 CH           CHE               Switzerland  
#>  5 66f68317c3cd67046058009c CH           CHE               Switzerland  
#>  6 66d6da9cc3cd670460580053 CH           CHE               Switzerland  
#>  7 66cde603c3cd67046057fff5 CH           CHE               Switzerland  
#>  8 66c46f86c3cd67046057ff53 CH           CHE               Switzerland  
#>  9 66c46cf6c3cd67046057ff4f CH           CHE               Switzerland  
#> 10 66c46c3ac3cd67046057ff4b CH           CHE               Switzerland  
#> # ℹ 17,879 more rows