cover_mean_c {fqacalc} | R Documentation |
Calculate Cover-Weighted Mean C
Description
cover_mean_c
calculates the sum of cover multiplied by the C value per each
species, divided by the sum of cover values for all species.
Usage
cover_mean_c(
x,
key = "name",
db,
native = FALSE,
cover_class = "percent_cover",
allow_duplicates,
plot_id = NULL
)
Arguments
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. |
cover_class |
a character string representing the cover classification used. Acceptable
cover classes are: |
allow_duplicates |
Boolean (TRUE or FALSE). If TRUE, allow |
plot_id |
A character string representing the column in |
Value
A non-negative number
Examples
plot <- data.frame(acronym = c("ABEESC", "ABIBAL", "AMMBRE", "ANTELE"),
cover = c(50, 4, 20, 30),
plot_id = c(1, 1, 2, 2))
cover_mean_c(x = plot, key = "acronym", db = "michigan_2014", native = FALSE,
allow_duplicates = FALSE, plot_id = "plot_id")