1. require(dplyr)
  2. require(quantmod)
  3. getSymbols("DJIA", src = "FRED")
  4. roc <- na.omit(merge(ROC(DJIA,n=1),ROC(DJIA,n=250)))
  5. require(rCharts)
  6. require(latticeExtra)
  7. require(directlabels)
  8. roc.df <- reshape2::melt(
  9. data.frame(
  10. date = as.Date(index(roc["1986::1987",])),
  11. ROC_1day = roc["1986::1987",1,drop=T],
  12. ROC_1year = roc["1986::1987",2,drop=T]
  13. )
  14. ,id.vars = 1
  15. , variable.name = "period"
  16. , value.name = "roc"
  17. )
  18. #draw a traditional lattice plot
  19. direct.label(asTheEconomist(
  20. xyplot(roc~date,groups=period,data=roc.df,type="l"
  21. # ,auto.key=TRUE
  22. ,main="Dow Jones Industrial Average (source: St. Louis Federal Reserve (FRED) )"
  23. )
  24. ),method="last.points")
  25. #draw an interactive dimple chart
  26. roc.df$date <- format(roc.df$date)
  27. d1 <- dPlot(
  28. roc ~ date
  29. ,groups = "period"
  30. ,data = roc.df
  31. ,type = "line"
  32. ,height = 400
  33. ,width = 700
  34. ,bounds = list(x = 80, y = 70, width = 600 , height = 250)
  35. #,legend = list(x = , y = , width = , height = )
  36. )
  37. d1$xAxis(
  38. type = "addTimeAxis",
  39. inputFormat = "%Y-%m-%d",
  40. outputFormat = "%Y-%m-%d"
  41. )
  42. d1$yAxis(
  43. outputFormat = ".2%f"
  44. )
  45. d1$set(
  46. defaultColors = latticeExtra::theEconomist.theme()$superpose.line$col[c(1,4)]
  47. )
  48. d1$setTemplate(
  49. afterScript =
  50. '
  51. <script>
  52. //get fewer ticks on x axis
  53. //this is a dimple issue that might or might not get fixed
  54. myChart.svg.select(".axis").selectAll(".tick")[0].forEach(function(d,i){
  55. if (!(+d3.time.format("%m")(new Date(+d3.select(d).datum())) % 3 == 1)) {
  56. d.remove()
  57. } else {
  58. var dtext = d3.select(d).selectAll("text");
  59. dtext
  60. .text(d3.time.format("%b %Y")(new Date(dtext.text())))
  61. .attr("transform","none")
  62. .attr("y",12)
  63. .style("text-anchor","middle");
  64. }
  65. });
  66. //remove x axis label
  67. myChart.axes[0].titleShape.remove()
  68. myChart.svg.append("text")
  69. .attr("id","charttitle")
  70. .attr("x", 0)
  71. .attr("y", 30)
  72. .text("Dow Jones Industrial Average (source: St. Louis Federal Reserve (FRED) )")
  73. .style("text-anchor","beginning")
  74. .style("font-size","16px")
  75. .style("font-family","sans-serif")
  76. </script>
  77. '
  78. )
  79. d1