Coursera - Developing Data Products - Week 3 Assignment
October 7, 2018
Coursera - Developing Data Products - Week 3 Assignment
-This project was created as part of the Developing Data Products course of the Coursera Data Science Specialisation.
-The goal of the project is to create a web page presentation using R Markdown that features a plot created with Plotly, and to host the resulting web page on either GitHub Pages, RPubs, or NeoCities.
library(plotly)
packageVersion('plotly')
## [1] '4.8.0'
data(iris) p<-plot_ly(data = iris, x = ~Sepal.Length, y = ~Petal.Length)
## Warning: package 'bindrcpp' was built under R version 3.4.4