Peer-graded Assignment: R Markdown Presentation & Plotly

Abhijeet Mohite

02/07/2020

## Warning: package 'plotly' was built under R version 3.6.3
## Loading required package: ggplot2
## Warning: package 'ggplot2' was built under R version 3.6.3
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout

Steps to create the assignment

Slide with R Output

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')

Slide with Plot

Thank You for taking out your time to view my assignment.