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).

trophic_level(sp)

Arguments

sp

A character value containing the species name

Value

Returns a dataframe with species, trophic level, and taxonomy level.

Examples

if (FALSE) {
library(fishflux)
library(plyr)
trophic_level("Lutjanus griseus")
ldply(lapply(c("Chlorurus spilurus","Zebrasoma scopas"), trophic_level))}