Global Electricity Energy Sources Trend
telerenew %>%
filter (Indicator == "elecoal") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2000")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 157.
telerenew %>%
filter (Indicator == "elengas") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2000")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 81.5
telerenew %>%
filter (Indicator == "elehydro") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2000")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 76.6
telerenew %>%
filter (Indicator == "elenuc") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2000")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 40.5
telerenew %>%
filter (Indicator == "eleoil") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2000")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 35.7
telerenew %>%
filter (Indicator == "elerenew") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2000")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 4.73
gdf2000<- data.frame (EnergySource = c("Coal","Natural Gas","Hydroelectric","Oil","Nuclear Energy", "Renewable Energy"),
Value = c("157.1","81.5","76.6","40.5","35.7", "4.7"))
telerenew %>%
filter (Indicator == "elecoal") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2015")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 173.
telerenew %>%
filter (Indicator == "elengas") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2015")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 88.7
telerenew %>%
filter (Indicator == "elehydro") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2015")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 64.3
telerenew %>%
filter (Indicator == "elenuc") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2015")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 17.4
telerenew %>%
filter (Indicator == "eleoil") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2015")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 15.8
telerenew %>%
filter (Indicator == "elerenew") %>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year =="2015")%>%
summarize (sum (value))
## # A tibble: 1 × 1
## `sum(value)`
## <dbl>
## 1 22.2
gdf2015<- data.frame (EnergySource = c("Coal","Natural Gas","Hydroelectric","Oil","Nuclear Energy", "Renewable Energy"),
Value = c("173.3","88.7","64.3","17.4","15.8", "22.2"))
telerenew5<- telerenew %>%
filter(Indicator == "elerenew")%>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year < "2015")%>%
group_by(year, Country)%>%
summarize(sum = sum(value))
telerenew5<- telerenew %>%
filter(Indicator == "elecoal")%>%
filter (Country %in% c("HIC", "LMC","MIC", "UMC", "LIC"))%>%
filter (year < "2015")%>%
group_by(year, Country)%>%
summarize(sum = sum(value))
wbregion <- c("EAS", "ECS", "LCN", "MEA", "NAC", "SAS", "SSF")
renewreg <- wb_data("EG.ELC.RNWX.KH", country = wbregion,
start_date = 2015, end_date = 2015)
eaphi <- c("AUS", "BRN", "GUM", "HKG", "JPN", "KOR", "MAC", "MNP", "NCL", "NRU", "NZL", "PYF", "SGP")
eapli <- c("PRK")
eaplmi <- c("FSM", "IDN", "KHM", "KIR", "LAO", "MMR", "MNG", "PHL", "PNG", "SLB", "TLS", "VNM", "VUT", "WSM")
eapumi <- c("ASM", "CHN", "FJI", "MHL", "MYS", "PLW", "THA", "TON", "TUV")
eaplmirev <- c("IDN", "KHM", "MMR", "MNG", "PHL", "VNM")
reneweaphi <- wb_data("EG.ELC.RNWX.KH", country = eaphi,
start_date = 2000, end_date = 2015)
reneweapeumi <- wb_data("EG.ELC.RNWX.KH", country = eapumi,
start_date = 2000, end_date = 2015)
reneweaplmi <- wb_data("EG.ELC.RNWX.KH", country = eaplmi,
start_date = 2000, end_date = 2015)
reneweaplmirev <- wb_data("EG.ELC.RNWX.KH", country = eaplmirev,
start_date = 2000, end_date = 2015)
# create a vector of the desired indicator series
indicators <- c(elecoal, elehydro, elengas, elenuc, eleoil,
elerenew)
countries <- WDI(country="all", indicator = indicators,
start = 1990, end = 2015, extra = TRUE)
# convert geocodes from factors into numerics
countries$lng <- as.numeric(as.character(countries$longitude))
countries$lat <- as.numeric(as.character(countries$latitude))
# Remove groupings, which have no geocodes
countries <- countries %>%
filter(!is.na(lng))
- Through which type of energy is electricity made from in each
country/ in each region.
- Which country does best in using renewable sources to produce
electricity
- Which country does the worst in using renewable energy sources to
produce electricity?
- What is the level of GHG emission & CO2 emission in that
country?
- What is the CO2 emission from electricity and heat production
- (What is the level of PM2.5 comparing the worst and best
country)
- What is their renewable electricity output?
- Run cross sectional multiple regression: Y is level of electricity
consumption across countries. X1 is number covid 19 cases. Control
variables include: population density, rural vs urban ratio, #
vaccinations…
- Include an interaction term of the ICT electricity use because
research has found that ICT sector development is positively correlated
to a electricity usage. Or include a qualitative analysis of how
shifting towards working from home expedited the digitization process
and the ICT sectors.