Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have recently studied functional programming with Haskell and Clojure and found it has also improved my R coding practices. For example I've better grasped the possibilities of usign lists and apply family of functions instead of loops. As a side effect I also discovered that a lot of my problems are parallel (and I can use mclapply for significant speed up), but I've been thinking sequentially in terms of loops.

I've read quite a bit of R material over the past couple of years and although the benefits of using the apply functions is usually demonstrated, I've found that still most of the examples use loops instead of lapply, mapply etc.

Now my question is: Can you recommend me some good R tutorials or books that have special focus on functional programming with R? If such resources exists I'd like to recommend those for my students when learning R.

share|improve this question
7  
the apply family 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 use for loops constructing obfuscated calls to one of the apply family of functions where a properly lain out for() loop would have been much easier to handle. – Gavin Simpson Feb 2 '11 at 13:31
1  
I'm aware that the apply family is syntactic, but I think that in most cases it makes the code more readable and easier to debug. I think for() 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:34
4  
@Gavin : in the discussion on whether apply is just syntactic sugar, Shane makes a very good argument about the side effects : stackoverflow.com/questions/2275896/… – Joris Meys Feb 2 '11 at 14:19
1  
They are not just syntactic sugar. Sometimes they are substantially more optimized than a loop. This is not true for the apply() command but lapply can be substantially faster than a loop. Furthermore, even as syntactic sugar these commands can then much more efficiently intermingle with vectorized functions for faster code. – John Feb 2 '11 at 14:24
4  
@John Your first point above I agree with (I perhaps could have been clearer with "in some senses"). The second point (on speed of lapply) 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 bad lapply calls 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
show 5 more comments

closed as not constructive by Robert Harvey Oct 4 '11 at 21:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 15 down vote accepted

John Chambers book Software for Data Analysis: Programming with R discusses how R fits into the functional programming paradigm, and where it deviates from it. Chapter 3 in particular discusses functional programming and examines R from this point of view. As far as I can see, the entire book is John's avocacy of functional programming with data using R.

share|improve this answer
Thanks, sounds interesting. I'll add it to my wish list to wait for my next Amazon order. – Matti Pastell Feb 2 '11 at 14:18

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.

share|improve this answer
1  
community wiki? – Paolo Feb 3 '11 at 16:37
Thanks for your insight you have summed up my motivation for asking this question very well. This is more or less the style I feel I've picked up over the years from various sources and after studying Haskell. Can you recommend any learning resources that would help R beginners to pick up this style? What material do you use in your R courses? – Matti Pastell Feb 7 '11 at 7:48
2  
@Matti One thing I've found helpful is drills (e.g. had.co.nz/stat405/resources/drills/plyr.html) - lots of practice really helps. Also, grade code - I use a rubric (had.co.nz/stat405/assessment/code-rubric.pdf) that emphasises planning, clarity and skill at execution. – hadley Feb 7 '11 at 15:02
Ok, thanks! I like the exercises :) – Matti Pastell Feb 7 '11 at 17:27

R Inferno by Patrick Burns (pun intended?) was an eye opener for me (and still is).

share|improve this answer
The R inferno is very good especially at teaching vectorization, but its not quite what I'm looking for here. – Matti Pastell Feb 2 '11 at 13:57
Agreed, it's only a small part of the functional programming in R. – Roman Luštrik Feb 2 '11 at 15:20

If you need basic or intermediate info on the functional programming, you could look at the 61A Berkley lectures on youtube. It's a great start.

youtube search for "61A berkley map reduce", and start with that lecture.

Important R Functions to use are "Map()", "Reduce()", and to some extend "Filter()" and related. The "by" function also helps.

What the basic problem is in R (and simply said most none haskell languages is): functional programming has to be consequently supported throughout.

In R, F#, Clojure, Lisp, Scala, Erlang, etc. On some level there are side effects and functional programming like in haskell can't be used.

And again, the Agda Programming language is again much clean an purer than haskell. (See Ulf Norell's Paper "Dependently Typed Programming in Agda").

Basically R is a cool language because of the many good statistic related packages it has. So anything remotly related to statistics is very well solved in R. But R is a "scripting language", which is mainly used to glue together different packages, libs, etc. The Programming language is however more a "hack" style of doing things.

on youtub search also for: "Erik Meijer JAOO 1". It's s a short part of his talk on haskell and why pure is important.

just for fun also on youtube: "OSCON 09: Erik Meijer, Fundamentalist Functional Programming"

share|improve this answer
2  
-1 for saying R is a hack without any justification. – hadley Feb 7 '11 at 15:02
Hi Hadley, yes that point was not justified in more detail. Just as a note, I always have your book around and it's really the only useful R book I have seen. (would be nice if there was a well written book like this about R in general). – mrsteve Feb 7 '11 at 16:08

Not the answer you're looking for? Browse other questions tagged or ask your own question.