View Python2Pyspark_1.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View gist:f7ecfc638b89037fc2e8c7134cb0146e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(WDI) | |
library(ggplot2) | |
library(googleVis) | |
library(dplyr) | |
library("plyr") | |
pop = WDI(indicator='SP.POP.TOTL', country="all",start=1970, end=2016) | |
gdp= WDI(indicator='NY.GDP.MKTP.CD', country="all",start=1970, end=2016) | |
le= WDI(indicator='SP.DYN.LE00.IN', country="all",start=1970, end=2016) | |
names(pop)[3]="Population" | |
names(le)[3]="Life Expectancy" |
View yorkrWithDSE.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.