2017-9-30

1. Introduction

Create a web page presentation using R Markdown that features a plot created with Plotly. Host your webpage on either GitHub Pages, RPubs, or NeoCities. Your webpage must contain the date that you created the document, and it must contain a plot created with Plotly. We would love to see you show off your creativity!

2. Review criteria

The rubric contains the following two questions:

  1. Does the web page feature a date and is this date less than two months before the date that you're grading this assignment?

  2. Is the web page a presentation and does it feature an interactive plot that appears to have been created with Plotly?

Example Submissions

Here's an extremely minimal passing example, but we hope your submission is much cooler!

3. Installation

# Check the Plotly package.
necessary <- c("plotly")
installed <- necessary %in% installed.packages()[, "Package"]

if (length(necessary[!installed]) >=1) {
  install.packages(necessary[!installed])
}
# Load and check the package.
library(plotly)
packageVersion("plotly")
## [1] '4.7.1'

4. Make a plot