August 10th, 2015

on the Web

Why interactive graphics on the Web?

  1. Portable (web browser)
  2. Simple (share via URL)
  3. Reach (everyone has internet, right?)

Figure converters

library(animint)
p <- qplot(data = iris, x = Sepal.Width, y = Sepal.Length, color = Species)
structure(list(p = p), class = "animint")

library(plotly)
ggplotly(p)