A function to find trophic level of a species on either species or genus
level using rfishbase. It returns a data frame containing the trophic level
and the level at which the trophic level was found (species or genus).
Usage
trophic_level(sp)
Arguments
sp
A character value containing the species name
Value
Returns a dataframe with species, trophic level, and taxonomy level.
# NOT RUN {library(fishflux)
library(plyr)
trophic_level("Lutjanus griseus")
ldply(lapply(c("Chlorurus spilurus","Zebrasoma scopas"), trophic_level))
# }# NOT RUN {# }