Install Packages for the Random Forest Meeting

Install packages
If you haven’t installed the requeire packages, open an R session, connect to the internet, and run:
install.packages(c("rpart", "tree", "randomForest", "ISLR"))
To check the instalation:
library(rpart)
library(tree)
library(randomForest)
library(ISLR)