My First Slidify presentation

An Example

Sandeep

Dataset

  1. mtcars dataset has been used in this sample presentation
  2. Relationship between hp and mpg has been exploed

Including a Static Plot

plot of chunk unnamed-chunk-1

R script for producing a plotly graph

library(plotly)

plotly::ggplotly(mtcars %>% 
                   ggplot(aes(hp,mpg,col=as.factor(cyl)))+
  geom_point(size=4))

plotly graph

## PhantomJS not found. You can install it with webshot::install_phantomjs(). If it is installed, please make sure the phantomjs executable can be found via the PATH variable.
## Error in file(con, "rb"): cannot open the connection