Can someone please explain me how this one line R code works?
split(dat, f) <- lapply(split(dat, f), max)
I thought it is a just a recycling rule but really I can't understand it.
data example :
dat <- c(1, 2, 3, 100, 200, 300)
f <- as.factor(c("a", "a", "b", "a", "b", "b"))
split(dat, f) <- lapply(split(dat, f), max)
dat
[1] 100 100 300 100 300 300
The code do what I want to do (assign the max by group) but the question is how this is done?
`split<-.default`. – Joshua Ulrich Jan 12 at 14:05