...regarding execution time and / or memory.
If this is not true, prove it with a code snippet. Note that speedup by vectorization does not count. The speedup must come from apply (tapply, sapply, ...) itself.
|
|
|
The But in general, the rule is that you should use an apply function for clarity, not for performance. I would add to this that apply functions have no side effects, which is an important distinction when it comes to functional programming with R. This can be overridden by using Edit: Just to emphasize this with a trivial example that recursively calculates the Fibonacci sequence; this could be run multiple times to get an accurate measure, but the point is that none of the methods have significantly different performance:
Edit 2: Regarding the usage of parallel packages for R (e.g. rpvm, rmpi, snow), these do generally provide
This example uses a socket cluster, for which no additional software needs to be installed; otherwise you will need something like PVM or MPI (see Tierney's clustering page).
It makes sense that Edit: Here's a trivial example to demonstrate the difference between
Note how the |
|||||||||||||||||
|
|
Sometimes speedup can be substantial, like when you have to nest for-loops to get the average based on a grouping of more than one factor. Here you have two approaches that give you the exact same result :
Both give exactly the same result, being a 5 x 10 matrix with the averages and named rows and columns. But :
There you go. What did I win? ;-) |
|||||||||||||||||
|
|
...and as I just wrote elsewhere, vapply is your friend! ...it's like sapply, but you also specify the return value type which makes it much faster.
|
|||
|
|
|
I've written elsewhere that an example like Shane's doesn't really stress the difference in performance among the various kinds of looping syntax because the time is all spent within the function rather than actually stressing the loop. Furthermore, the code unfairly compares a for loop with no memory with apply family functions that return a value. Here's a slightly different example that emphasizes the point.
If you plan to save the result then apply family functions can be MUCH more than syntactic sugar. (the simple unlist of z is only 0.2s so the lapply is much faster. Initializing the z in the for loop is quite fast because I'm giving the average of the last 5 of 6 runs so moving that outside the system.time would hardly affect things) |
|||||||||||||
|
|
When applying functions over subsets of a vector,
But for these situations we've got colSums and rowSums:
|
|||||
|