R Markdown Presentation & Plotly

Gil Huesca

9/27/2020

The code (1)

library(plotly)
library(tidyr) 
library(dplyr)

data(LakeHuron)

plot_ly(x = time(LakeHuron), y = LakeHuron, mode="lines")

The plot (1)

The code (2)

library(plotly)
library(tidyr) 
library(dplyr)

data(LakeHuron)

plot_ly(y = LakeHuron, type = "box")

The plot (2)

Thank you

This presentation was made using Slidy and Plotly.

It is the result for the assignment of week 3 for the course Developing Data Products in Coursera.