Nothing
RareSpeciesGroup <-
function(data, k){
data <- as.numeric(data)
f <- function(i, data){length(data[which(data == i)])}
x <- data[which(data != 0)]
r <- c(1:k)
Rare.Species.Group <- matrix(sapply(r, function(r)f(r, x)), 1, k)
#rownames(Rare.Species.Group) <- c(" f(i)")
#colnames(Rare.Species.Group) <- c(1:k)
rownames(Rare.Species.Group) <- c(" Rare.Species.Group")
colnames(Rare.Species.Group) <- paste("f", r, sep="")
return(Rare.Species.Group)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.