This repository contains the lecture slides for the Coursera course Data Analysis. The slides were created with the Slidify package in Rstudio.
To download the folder with the slides for all lectures, click on the button to download the zip file above.
You will need to install R, Rstudio and Slidify. To install Slidify, open Rstudio and run the commands:
install.packages("devtools")
library(devtools)
install_github("slidify","ramnathv")
install_github("slidifyLibraries","ramnathv")
Next, you need to set your working directory to the lecture you would like to compile. You can do this with either the drop down menus or using the setwd() command in R. Pick the directory for the lecture you would like to compile.
Once you have completed this step run the commands:
library(slidify)
slidify("index.Rmd")
browseURL("index.html")
This should compile the slides and open the resulting webpage on your computer.