This data frame contains annual data on vehicle sales statistics by region and type between the years 2005 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(sales_region)

Format

VariableDescription
yearYear (2005 - 2021)
regionRegion name
typeVehicle type: pv = passenger vehicle, cv = commercial vehicle
nNumber of vehicles produced

Examples

data(sales_region)

head(sales_region)
#> # A tibble: 6 × 4
#>    year region type       n
#>   <dbl> <chr>  <chr>  <dbl>
#> 1  2005 Africa pc    784237
#> 2  2005 Africa cv    328780
#> 3  2006 Africa pc    926966
#> 4  2006 Africa cv    387309
#> 5  2007 Africa pc    939201
#> 6  2007 Africa cv    382773