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.

The loop below modifies bloc. Can sapply() achieve the same result?

Or in other words, can sapply() update variables in the base environment? I tried using assign() but without success. Thank you.

n <- 100 
fencePosts <- c(17,34) 
bloc <- rep(0,n) 
for (i in 1:length(fencePosts)){   
  bloc[fencePosts[i]:n] = i 
} 
table(bloc)

I was thinking of something like the following line, but of course bloc is out of scope (although I'm not sure why this doesn't raise a "bloc not found" error).

zilch <- sapply(1:length(fencePosts),function(i)bloc[fencePosts[i]:n] = i)
share|improve this question

3 Answers

up vote 1 down vote accepted

I don't know how kosher it is to the R-perts, but you could do

zilch <- sapply(1:length(fencePosts),function(i)bloc[fencePosts[i]:n] <<- i)
share|improve this answer
I do this sometimes, but only when I can contain the object being assigned to, bloc and the sapply() call in a little function, which takes bloc, etc as an argument and then returns the modified bloc – tim riffe Mar 6 '12 at 20:30

I've not seen sapply used this way and even if possible, I'm not sure it's a good idea. The primary use of sapply is for doing the same task on different elements of a list, and then collecting the results in a useful way. This doesn't match that usage, so I think the code would be difficult to read and maintain, even if it is possible.

In this particular case, why not use rep?

bloc <- rep(seq_len(length(fencePosts)+1), diff(c(1,fencePosts,n+1))

As for why it doesn't work, it does have to do with scoping; one good reference is John Fox's: http://cran.r-project.org/doc/contrib/Fox-Companion/appendix-scope.pdf.

share|improve this answer
Thanks for both the example and the link. – M.Dimo Mar 6 '12 at 21:00

In this case, you do not really need any assignment inside the loop or inside sapply.

sapply( 1:n, function(u) sum(u >= fencePosts) )
share|improve this answer

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.