11/24/2020

R Markdown

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!

Slide with Bullets

library(plotly)

Slide with R Output

plot_ly(z=volcano, type="surface")

3d

Slide with Plot

library(plotly)
p <- plot_ly(midwest, x = ~percollege, color = ~state, type = "box")
p

Boxplot