6 June 2017

Introduction

  • This is a simple webpage presentation showing an interactive plot created using Plotly.

A dot plot of 1,000 random points

library(plotly)
p <- plot_ly (x = rnorm(1000), y = rnorm(1000), 
              type = 'scatter', mode = 'markers')
p