FQI | R Documentation |
FQI
calculates the Floristic Quality Index (FQI) for the area of concern. FQI is found
by multiplying the mean C by the square root of the species richness. If native = TRUE
,
FQI
will calculate the Native FQI.
FQI(x, key = "name", db, native = FALSE)
x |
A data frame containing a list of plant species. This data frame
must have one of the following columns: |
key |
A character string representing the column that will be used to join
the input data frame |
db |
A character string representing the regional FQA database to use. See
|
native |
Boolean (TRUE or FALSE). If TRUE, calculate metrics using only native species. |
A non-negative integer
plant_list <- crooked_island
#FQI of all species (native and introduced)
FQI(x = plant_list, key = "acronym", db = "michigan_2014", native = FALSE)
#FQI of native species
FQI(x = plant_list, key = "acronym", db = "michigan_2014", native = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.