get_kaya_data {kayadata} | R Documentation |
Get Kaya data for one or more countries or regions
Description
Get Kaya data for one or more countries or regions
Usage
get_kaya_data(
region_name,
gdp = c("MER", "PPP"),
quiet = FALSE,
region_code = NULL
)
Arguments
region_name |
The name of one or more countries or regions to look up |
gdp |
Use market exchange rates ( |
quiet |
Suppress warnings if there is no such country or region. |
region_code |
Optional three-letter country or region codes to look up
instead of the |
Details
Units for G, g, e, and ef depend on whether the data is requested in MER or PPP dollars: For MER, dollars are constant 2015 U.S. dollars. For PPP, dollars are constant 2017 international dollars.
_P_ and MER values for GDP and related quantities are available from 1960 onward. PPP values for GDP and related quantities are only available from 1990 onward. Energy-related values (_E_, _F_, and derived quantities) are available from 1965 onward. Note that emissions (_F_, _f_, and _ef_) are reported as millions of metric tons of carbon dioxide, not carbon.
Value
a tibble of Kaya identity data for the countries or regions specified:
- region
The name of the country or region
- year
The year
- P
Population, in billions
- G
Gross domestic product, in trillions of constant 2015 U.S. dollars.
- E
Total primary energy consumption, in quads
- F
CO2 emissions from fossil fuel consumption, in millions of metric tons
- g
Per-capita GDP, in thousands of dollars per person.
- e
Energy intensity of the economy, in quads per trillion dollars.
- f
Emissions intensity of the energy supply, in million metric tons per quad.
- ef
Emissions intensity of the economy, in metric tons per million dollars of GDP.
See Also
Examples
get_kaya_data("Brazil")
get_kaya_data("United Kingdom", "PPP")
get_kaya_data(region_name = "United States")
get_kaya_data(region_code = "MYS")