R에서 Trelliscope로 빅데이터 시각화하기
Ryan Hafen
Author, TrelliscopeJS
facet_trelliscope()와 trelliscope()는 디스플레이 출력을 제어하는 다양한 옵션을 제공합니다:
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 = ..., ...)
R에서 Trelliscope로 빅데이터 시각화하기