Description Usage Arguments Value Examples
Draw a straw broom chart.
1 |
dygraph |
Dygraph to draw chart on |
value |
Value to rebase to |
percent |
If true, ingnore value argument and rebase to percentage difference |
Dygraph with specified straw broom chart
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
library(quantmod)
tickers <- c("AAPL", "MSFT")
getSymbols(tickers)
closePrices <- do.call(merge, lapply(tickers, function(x) Cl(get(x))))
dateWindow <- c("2008-01-01", "2009-01-01")
dygraph(closePrices, main = "Value", group = "stock") %>%
dyRebase(value = 100) %>%
dyRangeSelector(dateWindow = dateWindow)
dygraph(closePrices, main = "Percent", group = "stock") %>%
dyRebase(percent = TRUE) %>%
dyRangeSelector(dateWindow = dateWindow)
dygraph(closePrices, main = "None", group = "stock") %>%
dyRangeSelector(dateWindow = dateWindow)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.