PMean: Another example of pipes in R

This page is moving to a new website.

I am using pipes in R (the magrittr package) a lot recently. It reduces the number of errors due to nested functions, among other things. I’ve given a simple example before, and here’s another.

I am calculating the cumulative distance from a vector of longitude and latitude values. The last statement looked like this:

return(round(cumsum(c(0,sqrt(x^2+y^2)))))

Notice this large number of right parentheses. Using pipes, the command would look like

c(0,sqrt(x^2+y^2)) %>% cumsum %>% round %>% return

There are still a few parentheses, but it is much more manageable. You can also change the code easily. For example, suppose you wanted to round to the first decimal rather than the whole number. In the nested functions above, you’d have to figure out where among the various parentheses you would add the “,1″. It ends up looking like

return(round(cumsum(c(0,sqrt(x^2+y^2))),1))

but it would be very easy to place this one parentheses off and then R things that you are adding a “,1″ to the cumsum function. Not nice.

This is the change you’d make using pipes.

c(0,sqrt(x^2+y^2)) %>% cumsum %>% round(1) %>% return

Much less chance of making an error.