- rCharts is an R package to create, customize and publish interactive JavaScript visualizations from R
- Developed by Ramnath Vaidyanathan, creator of Slidify
- uses a familiar lattice style plotting interface.
- R code is converted to JavaScript on the back end, see it when you type
mychart$print()
- rCharts by itself is interactive to a point, but within a Shiny app it allows input and modification of data in the chart
- Installation:
require(devtools)
install_github('rCharts', 'ramnathv')
Working with rCharts
Load the library, prepare data, create plot as is or assign it to a variable.