This article is intended to briefly summarize what I’ve learn about the *apply functions. split() and lapply() We’ll work on the Air Quality *.csv file from the Data Science Specialization course: > airquality <- read.csv(“rcourse/hw1_data.csv”) > head(airquality) We want to create a matrix that contain the monthy means of each column : > s <- split(airquality,Continue reading “Learning *apply() Functions”