R Workshop

HTmL5 slides from R markdown

John Froeschke

Why R?

  1. Functions
  2. Calculations
  3. Most statistical routines
  4. Graphics
  5. Maps
  6. Write your own software
  7. Free and open source

Why not R?

  1. Steep learning curve
  2. Requires programming
  3. No graphical user interface
  4. Free and open source

Getting Started with R

Motion Chart

Map

require(rCharts)
Loading required package: rCharts
L1 <- Leaflet$new()
L1$tileLayer(provider = "Stamen.TonerLite")
L1$setView(c(40.73029, -73.99076), 13)
L1$set(width = 1200, height = 600)