Skip to content

Instantly share code, notes, and snippets.

@micahstubbs
Created December 6, 2014 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save micahstubbs/9bb6a901087d70eece51 to your computer and use it in GitHub Desktop.
Save micahstubbs/9bb6a901087d70eece51 to your computer and use it in GitHub Desktop.
symbolList <- list("AMZN","GOOG", 'MSFT")
effectiveTaxRate = Quandl("DMDRN/AMZN_EFF_TAX", trim_start="2003-01-01", trim_end="2014-12-31")
EBIT = Quandl("DMDRN/AMZN_EBIT", trim_start="2003-01-01", trim_end="2014-12-31")
data <- merge(effectiveTaxRate,EBIT,by=c("Date"))
data$symbol <- "AMZN"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment