Making an interactive pie chart using R

Discussion in 'App Development' started by blueraincap, Apr 22, 2020.

  1. 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?
     
  2. TheBigShort

    TheBigShort

    highcharter
     
    blueraincap likes this.
  3. TheBigShort

    TheBigShort

    nice. Enjoy
     
  4. 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?
     
  5. 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.
     
  6. seems there are tons of interactive chart packages, hard to know more than a few
     
    Last edited: Apr 23, 2020