I am trying to run a jack-knife using Plyr. I have a large dataset (715 sites over 10 years). I have already calculated the Species Richness (count of all species present) in a square for each year but now I want to calculate new Richness values, after taking out one species at a time and have them all in one dataset.
Example data:
Site <- c(1,1,1,1,1,1)
Year <- c(96,96,96,97,97,97)
SpID <- c(1,2,3,1,2,3)
Count <- c(1,1,1,1,1,1)
data <- cbind(Site, Year, SpID)
So overall for Site 1 the species richness is 3 in both years. If I want recalculate this without one of the species it would now be 2.
I have tried using the following code:
foo<-function(z){
data2 <- subset(data, SpID != (z))
summaryBy(Count~ Year + Site,
data = data2,
FUN = function(x) { c(l = length(x)) } )
}
richall<- ddply(data,.(SpID),foo)
But I'm obviously making a mistake somewhere! Any thoughts?