Peer-graded Assignment: R Markdown Presentation & Plotly
Chris Blycha
14/03/2018
Instructions:
1: Create a web page presentation using R Markdown that features a plot created with Plotly.
2: Host your webpage on either GitHub Pages, RPubs, or NeoCities.
3: Your webpage must contain the date that you created the document, and it must contain a plot created with Plotly.
library(plotly)
plain_x <-c(1:50)
plain_y <-rnorm(50, mean =0)
data <-data.frame(plain_x, plain_y )
p <-plot_ly(data, x =~plain_x, y =~plain_y , type ='scatter', mode ='lines')
p