If you are into ggplot2, it is now super-easy to add interactivity to your graph. Just take your static ggplot object pl like the following
mpg dataset |
library(plotly)
ggplotly(pl)
That's it. You can configure your tooltip text with ggplotly(pl, tooltip = "text"), see my Rmarkdown example. And it works not only for a simple scatterplot but for more complex graphs as well, as @cpsievert tweeted today.
I made @galka_max Europe map interactive with 2 more lines of #rstats code https://t.co/KZp0w5YoFH pic.twitter.com/a4GaFJRJVn— Carson Sievert (@cpsievert) April 26, 2017
There are now also many easy-to-use htmlwidgets. And with the ggiraph package, you get now your click as Shiny input.
No comments:
Post a Comment