28 July 2018

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.

This is shiny presentation using plotly

set.seed(2018-07-28)
temp<-rnorm(100,mean=35,sd=5)
pressue<-rnorm(100)
dtime<-1:100

3d Scatterplot

plot_ly(x=temp, y=pressue, z=dtime,
        type="scatter3d", mode="markers", color=temp)