This data frame contains annual data on vehicle production statistics by country and type between the years 2006 and 2021 (inclusive) from the OICA. Standard country / area codes come from the United Nations Statistics Division. The table below shows a detailed description of each variable.
data(production)
Variable | Description |
year | Year (2006 - 2021) |
country | Country name |
type | Vehicle type: pv = passenger vehicle, cv = commercial vehicle |
n | Number of vehicles produced |
region | Country region (continent) |
subregion | Country subregion |
intermediate_region | Country intermediate region |
least_developed | Dummy variable; is country least developed? |
land_locked_developing | Dummy variable; is country land-locked developing? |
small_island_developing | Dummy variable; is country small island developing? |
code_region | Country region code |
code_subregion | Country subregion code |
code_intermediate_region | Country intermediate region code |
code_m49 | Country M49 code |
code_iso_alpha2 | Country ISO alpha 2 code |
code_iso_alpha3 | Country ISO alpha 3 code |
Raw data downloaded from the Organisation Internationale des Constructeurs d'Automobiles (OICA) and the United Nations Statistics Division
data(production)
head(production)
#> # A tibble: 6 × 16
#> year country type n region subregion intermediate_region
#> <int> <chr> <chr> <dbl> <chr> <chr> <chr>
#> 1 2006 Argentina pv 263120 Americas Latin America and t… South America
#> 2 2006 Argentina cv 168981 Americas Latin America and t… South America
#> 3 2006 Australia pv 270000 Oceania Australia and New Z… NA
#> 4 2006 Australia cv 60900 Oceania Australia and New Z… NA
#> 5 2006 Austria pv 248059 Europe Western Europe NA
#> 6 2006 Austria cv 26873 Europe Western Europe NA
#> # ℹ 9 more variables: least_developed <dbl>, land_locked_developing <dbl>,
#> # small_island_developing <dbl>, code_region <dbl>, code_subregion <dbl>,
#> # code_intermediate_region <dbl>, code_m49 <dbl>, code_iso_alpha2 <chr>,
#> # code_iso_alpha3 <chr>