Been using base/ggplot2 graphs which are static and now wanting to start learning plotly. Wondering which package (r2d3?) can be used to create a graph similar to Bloomberg's IMAP function?
I have no idea how to use any interactive charts, will slowly look into. In books I see the mention of plotly. which library is easier to get started and most general?
You can often wrap a ggplot chart into plotly, like: y <- ggplot2(...) + geom_(...) plotly(y) I'm not sure when it works and when it doesn't, but I've been shocked to just see it work with certain graphs.