Making an interactive pie chart using R

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?
 
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.
 
Back
Top