This should be same as the original charts of “Nasdaq 100 Index 1985/11/01-2012/06/29”

library(dcStockR)
library(httr)
library(lubridate)

Get from dc-js’s repo.

res <- GET("https://github.com/dc-js/dc.js/raw/master/web/ndx.csv")
ndx <- content(res, type = "text/csv")
ndx$date <- as.character(mdy(ndx$date))

yearlyBubbleChart

dc(ndx, "yearlyBubbleChart")

gainOrLossChart

dc(ndx, "gainOrLossChart")

quarterChart

dc(ndx, "quarterChart")

dayOfWeekChart

dc(ndx, "dayOfWeekChart")

fluctuationChart

dc(ndx, "fluctuationChart")

moveChart

dc(ndx, "moveChart")

dataCount

dc(ndx, "dataCount")

dataTable

dc(ndx, "dataTable")