Writing Efficient R Code
Colin Gillespie
Jumping Rivers & Newcastle University


# Load data_set <- read.csv("dataset.csv")# Plot plot(data_set$x, data_set$y)# Model lm(y ~ x, data = data_set)
Premature optimization is the root of all evil
Popularized by Donald Knuth
Main releases every April
Smaller bug fixes throughout the year
Writing Efficient R Code