R/kaya.R
project_top_down.Rd
Get top-down projections of Kaya variables for one or more countries or regions for a given year
project_top_down(region_name, year, quiet = FALSE, region_code = NULL)
a tibble of values for P, G, E, F, g, e, f, and ef for each country or region:
The name of the country or region
The year
Population, in billions
Gross domestic product, in trillions of constant 2015 U.S. dollars.
Total primary energy consumption, in quads
CO2 emissions from fossil fuel consumption, in millions of metric tons
Per-capita GDP, in thousands of constant 2015 U.S. dollars per person.
Energy intensity of the economy, in quads per trillion dollars.
Emissions intensity of the energy supply, in million metric tons per quad.
Emissions intensity of the economy, in metric tons per million dollars of GDP.
project_top_down("China", 2037)
#> # A tibble: 1 × 10
#> region year P G g E F e f ef
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 China 2037 1.41 30.6 21.6 164. 8981. 5.35 54.9 294.
project_top_down(region_code = "CHE", year = 2043)
#> # A tibble: 1 × 10
#> region year P G g E F e f ef
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 Switzerland 2043 0.00893 1.02 115. 1.23 33.1 1.20 26.8 32.3