Nothing
##' Function to expand condensed species list to full set of cells
##' @title Expand species list
##'
##' @description The epmGrid object contains an accounting of species per
##' cell in a condensed format. This function returns a complete list of species
##' per cell.
##'
##' @param x object of class \code{epmGrid}
##'
##' @return list of species for each cell.
##'
##' @author Pascal Title
##'
##' @examples
##' tamiasEPM
##' head(expandSpeciesCellList(tamiasEPM))
##'
##' @export
expandSpeciesCellList <- function(x) {
if (!'epmGrid' %in% class(x)) {
stop('x must be of class epmGrid.')
}
return(sapply(x[['cellCommInd']], function(y) x[['speciesList']][[y]]))
}
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.