rstudio / dygraphs

R interface to dygraphs
http://rstudio.github.io/dygraphs
Other
365 stars 194 forks source link

Is it compatible with tidyquant #178

Open vikram-rawat opened 7 years ago

vikram-rawat commented 7 years ago

R studio is trying to make a Timeseries a part of tidyverse. But I have no idea how to use it with Dygraph.

library(tidyquant) library(highcharter) library(dygraphs) AAPL <- tq_get("AAPL", get = "stock.prices", from = "2015-09-01", to = "2016-12-31") AMZN <- tq_get("AMZN", get = "stock.prices", from = "2000-01-01", to = "2016-12-31") AAPL %>% dygraph()

This simply Doesn't work.

Any suggestion or are you trying to Include this format as well.

jjallaire commented 7 years ago

Here's where we convert the incoming data to a time-series: https://github.com/rstudio/dygraphs/blob/master/R/dygraph.R#L42-L57

It's probably just a matter of having the authors of tidyquant take a look at this and give us a PR for handling tidyquant correctly

vikram-rawat commented 6 years ago

If it's just a matter of co-ordination I have opened an issue on their github.

https://github.com/business-science/tidyquant/issues/68

Please add yourself to the question as well.

mdancho84 commented 6 years ago

@vikram-rawat

Thanks for giving us a heads up about this. I'm sure we can integrate (although I havent had a chance to investigate thoroughly yet). We may need your help testing it out. @DavisVaughan and I will take a look.

Thanks, Matt

vikram-rawat commented 6 years ago

I will be ready to test it if possible. I can't help you with coding though. But I liked both of your packages and if they don't go hand in hand than there is some problem.

vikram-rawat commented 6 years ago

Is there any update on it???

vikram-rawat commented 5 years ago

Is this library no longer maintained???