Geo-spatial mapping
Time series charting
Interactive graphics with D3
R interface to Bokeh
R interface to Highcharts
Graph data visualization with vis.js
Graph data visualization with D3
Tabular data display
3D scatterplots and globes
Render scenes created with rgl
Diagrams and flowcharts
Scatterplots and line charts with D3
https://github.com/bwlewis/rthreejs
threejs includes a 3D scatterplot and 3D globe (you can directly manipulate the scatterplot below with the mouse).
library(threejs)
z <- seq(-10, 10, 0.01)
x <- cos(z)
y <- sin(z)
scatterplot3js(x,y,z, color=rainbow(length(z)))