Visualizing Big Data with Trelliscope in R
Ryan Hafen
Author, TrelliscopeJS
facet_trelliscope() and trelliscope() provide several options for handling the display output:
trelliscope(dat, path = "...", ...)ggplot(...) + ... + facet_trelliscope(path = "...", ...)

trelliscope(by_symbol,
name = "candlestick_top500",
desc = "Candlestick plot of the 500 most-traded NASDAQ stocks in 2016",
md_desc = "
## Candlestick Plot
A [candlestick plot](https://en.wikipedia.org/wiki/Candlestick_chart)
is a financial plot...
..." )



trelliscope(dat, width = 600, height = 300, ...)ggplot(...) + ... + facet_trelliscope(width = 600, height = 300, ...)
trelliscope(dat, state = ..., ...)ggplot(...) + ... + facet_trelliscope(state = ..., ...)
Visualizing Big Data with Trelliscope in R