Clickme is an R package that makes creating interactive JavaScript visualizations as easy as making a standard R plot.
Want to learn more? See the wiki and join the mailing list.
Install the latest version of Clickme by running the following in your R console:
install.packages("devtools") # run this if you don't have the devtools package installed.
library(devtools)
install_github("clickme", "nachocab")
Try the demos:
library(clickme)
# See what ractives you have available
list_ractives()
# Pick a few and try them
demo_ractive("force_directed")
demo_ractive("line_with_focus")
demo_ractive("longitudinal_heatmap")
demo_ractive("par_coords")
demo_ractive("vega")
Your browser will open a new tab for each example. The first one should look something like this.
Thank you Mike Bostock. Making the D3.js library more accessible was my strongest motivation for developing Clickme.
Thank you Yihui Xie. The knitr R package has shown me the importance of building bridges across technologies, while also turning my scientific ramblings into reproducible work.
Thank you Hadley Wickam. The testthat R package is a big reason why I find coding Clickme so enjoyable.