Using functional programming (FP) ideas in R is important because it often leads to cleaner code that is easier to understand. In my mind, there are three important FP concepts necessary to use R effectively:
- side-effect free functions,
- immutable objects, and
- specialised map functions.
Functions without side effects are much easier to reason about - given an input, you always know that the output will be the same, making it possible cache results, or easily parallelise computations. After programming in R for many years, java code looks so dangerous to me - when functions modify their inputs it's much harder to understand what's going on.
To get good performance from R, you must understand that R is built on top of immutable objects, and every time it looks like you are modify an object in place, you are really making a copy and modifying it. If you understand this, it's obvious why you always get a big win whenever you can vectorise a replacement operation. (Note that poor performance isn't a property of immutable objects, but a property of R's naive implementation of them - see clojure's persistent objects for a high-performance alternative).
Finally, I think the use of specialised map (or in R terminology, apply) functions is key for efficient data analysis, because they separate iteration book-keeping from real data processing code. For example, the following code snippet deaseasonalises ozone data stored in a lat x long x time 3d array. The majority of the code is book keeping to create the right output data structures:
deseasf <- function(value) rlm(value ~ month - 1)
models <- as.list(rep(NA, 24 * 24))
dim(models) <- c(24, 24)
deseas <- array(NA, c(24, 24, 72))
dimnames(deseas) <- dimnames(ozone)
for (i in seq_len(24)) {
for(j in seq_len(24)) {
mod <- deseasf(ozone[i, j, ])
models[[i, j]] <- mod
deseas[i, j, ] <- resid(mod)
}
}
Using the right apply-style functions (here, from plyr) allows you to focus on how the data is being manipulated, not the details of the manipulation (i.e. tell R what you want, not how to do it) (This is similar to my philosophy with ggplot2 where I think you get a big win by giving up control of the finer details, and allowing (e.g.) automated legend creation).
models <- aaply(ozone, 1:2, deseasf)
deseas <- aaply(models, 1:2, resid)
Note: you can do this using base apply functions as well, but it's a bit more work because the outputs aren't in quite the right formats. In particularly note the permutation of the apply output - the output of apply is not idempotent with respect to the identity operation.
models <- apply(ozone, 1:2, deseasf)
resids_list <- lapply(models, resid)
resids <- unlist(resids_list)
dim(resids) <- c(72, 24, 24)
deseas <- aperm(resids, c(2, 3, 1))
dimnames(deseas) <- dimnames(ozone)
However, you can't indiscriminately apply techniques from FP, because you may be very surprised about the performance. For example, recursion in R is slow, because unlike most functional languages, R does not perform tail call elimination. This means the environment of every function in the stack must be kept in memory.
applyfamily of functions are just hiding the loop constructs from you so they are syntactic sugar in some senses but they do set up storage for the results. Quite often people furiously try to not useforloops constructing obfuscated calls to one of the apply family of functions where a properly lain outfor()loop would have been much easier to handle. – Gavin Simpson Feb 2 '11 at 13:31for()loop in many cases is easier to handle just because a lot of people are used to loops. – Matti Pastell Feb 2 '11 at 13:34lapply) I also agree with. On your furthermore, I partially agree; hang around on R-Help or here long enough and you'll see enough examples of badlapplycalls forcing code into obfuscated one-liners, that would be much easier to understand if written out in a loop. I think the anti-loop school has oversold itself; both the apply family and loops have their place in R programming. – Gavin Simpson Feb 2 '11 at 16:02