I am using ddply to split up a data frame and send the chunks to a function. Before the ddply line, I set i=1. Then inside the function I am incrementing i so that each chunk of data gets a new number. When I run this, however, i is being reset to 1 each time the function is called. I assume this is because the i outside the function is being reassigned each time ddply sends a new chunk of data. Is there a way to increment outside the function and send that number along with the data?
EDIT:: Here is the calling line:
rseDF <- ddply(rseDF, .(TestCompound), .fun = setTheSet)
Here is the function:
##Set The Set Column
setTheSet <- function(df) {
if (df[,"TestCompound"] == "DNS000000001") df[,"Set"] <- "Control"
else {df[,"Set"] <- i
i <<- i+1}
return(df)
}
ddply. Perhaps if you expand a little bit on your use case and provide a minimal example, we can advise on alternative design patterns. (It sounds like you are really busy with a loop, in which caseldplymight be more appropriate?) – Andrie Sep 7 '11 at 16:18ddplywas to eliminate a for loop. The function simply creates a column and putsiinto it for all members. As far as I can tell, this is the "Split-Apply-Combine" strategy that ddply() was made for. – James Sep 7 '11 at 16:44