Dec 8, 2016

Attendees

Wiki Tour

Created accounts, gave attendees edit permissions, overview of the MoinMoin wiki features.

R

Confirmed that people had been able to install R (r-base on Debian distros) and in some cases RStudio. Ran through some basic R commands:

install.packages("ISLR")
library(ISLR)
data(USArrests)
library(MASS)
head(USArrests)
head(USArrests,10)
str(USArrests)
sumary(USArrests) - summary gives model/object specific output
plot(1)
plot(USArrests)
USArrests$UrbanPop
plot(USArrests$UrbanPop)
plot(USArrests$UrbanPop,  USArrests$Murder)
plot(Murder ~ UrbanPop,  USArrests)
m <- lm(Murder ~ UrbanPop, USArrests)
summary(m)
plot(m) - not predictions, just diagnostics

Presentation

David continued his presentation on Linear Classification.

Next Time