Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When i look at the source of R Packages, i see the function sweep used quite often. Sometimes it's used when a simpler function would have sufficed (e.g., 'apply'), other times, it's impossible to know exactly what it's is doing without spending a fair amount of time to step through the code block it's in.

the fact that i can reproduce sweep's effect using a simpler function suggests that i don't understand sweep's core use cases, and the fact that this function is used so often suggests that it's quite useful.

The context:

sweep is a function in R's standard library; it's method signature is:

sweep(x, MARGIN, STATS, FUN="-", check.margin=T, ...)

# x is the data
# STATS refers to the summary statistics which you wish to 'sweep out'
# FUN is the function used to carry out the sweep, "-" is the default

As you can see, the method signature is similar to 'apply' though 'sweep' requires one more parameter, 'STATS'.

Another key difference is that 'sweep' returns an array of the same shape as the input array, whereas the result returned by 'apply' depends on the function passed in.

Sweep in action:

# e.g., use 'sweep' to express a given matrix in terms of distance from 
# the respective column mean

# create some data:
M = matrix( 1:12, ncol=3)

# calculate column-wise mean for M
dx = colMeans(M)

# now 'sweep' that summary statistic from M
sweep(M, 2, dx, FUN="-")

     [,1] [,2] [,3]
[1,] -1.5 -1.5 -1.5
[2,] -0.5 -0.5 -0.5
[3,]  0.5  0.5  0.5
[4,]  1.5  1.5  1.5

So in sum, what i'm looking for is an exemplary use case or two for sweep.

Please, do not recite or link to the R Documentation, mailing lists, or any of the 'primary' R sources--assume i've read them. What i'm interested in is how experienced R programmers/analysts use sweep in their own code.

share|improve this question
1  
M-dx does not replicate your result. You answered your own question. – John Aug 10 '10 at 0:59
The only usage of apply that I can figure out for this result is something like t(apply(t(M), 2, "-", dx)), but that's pretty nasty. – Ken Williams May 4 '11 at 14:32

3 Answers

up vote 11 down vote accepted

sweep is typically used when you operate a matrix by row or by column, and the other input of the operation is a different value for each row / column. Whether you operate by row or column is defined by MARGIN, as for apply. The values used for what I called "the other input" is defined by STATS. So, for each row (or column), you will take a value from STATS and use in the operation defined by FUN.

For instance, if you want to add 1 to the 1st column, 2 to the 2nd, etc... of the matrix you defined, you will do:

sweep (M, 1, c (1: 4), "+")

I frankly did not understand the definition in the R documentation either, I just learned by looking up examples.

share|improve this answer
The example code you provided will add 1 to the first row, 2 to the 2nd row, etc. If you wanted to add 1 to the first column, 2 to the second column, etc, you'd need sweep (M, 2, c (1: 3), "+"). I assume you just meant to say row, but it's easy to get confused since the way R uses "margins" is different than MATLAB's (i.e. "margins" in R are the dimensions that should be retained in your output, in matlab, the dimension argument tells you which dimensions to aggregate over and drop in your output). – Daniel Kessler Apr 12 at 18:59
Although +1, since your answer helped me understand sweep :) – Daniel Kessler Apr 12 at 19:00

One thing I sometimes find useful is a simple Google Code query setting a term (sweep) and the programming language (R) though this example gives you the function itself first.

share|improve this answer
It's hard to admit that I am still learning how to google after all these years, but anyway: thx Dirk! – Matt Bannert Aug 10 '10 at 8:57
gone now.... :( – user1317221_G Jan 12 at 16:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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