R Markdown Presentation & Plotly

Ravi S.Gonella

8/2/2020

R Markdown Presentation & Plotly,

Coursera, Developing Data Products week 3

library(plotly)
## Warning: package 'plotly' was built under R version 4.0.2
## Loading required package: ggplot2
## 
## 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
data(iris)

plot_ly(x= iris$Sepal.Width, y= iris$Sepal.Length, z = iris$Species, 
type = "scatter3d", mode = "markers", color = iris$Species)