Description Usage Arguments Value Examples
View source: R/sumQuadGuilds.R
This function summarizes output from joinQuadData and calculates average cover and quadrat frequency for each guild. Average cover is corrected for number of quadrats sampled. Guilds are tree, shrub, forb, fern, and graminoid. If herbaceous guild is split, then cover of ferns does not overlap with cover of herbaceous. If herbaceous guild is not split, then cover of herbaceous guild includes fern and other herbaceous (but not graminoid) species cover.
1 2 3 4 5 6 7 8 9 10 11 12 | sumQuadGuilds(
speciesType = c("native", "exotic", "invasive", "all"),
park = "all",
from = 2006,
to = 2019,
splitHerb = TRUE,
QAQC = FALSE,
locType = "VS",
panels = 1:4,
output,
...
)
|
speciesType |
Allows you to filter on native, exotic or include all species.
|
splitHerb |
TRUE/FALSE. If TRUE (default), allows you to split the herbaceous group into forb and fern. If FALSE, then resulting data frame will be summarised for tree, shrub, herbaceous, and graminoid guilds. |
Returns a dataframe with average quadrat cover, percent quadrat frequency and quadrat frequency count for tree,shrub/vine,herbaceous,and graminoid. Data are sither summarized for all species, native only, exotic only, or invasive only.
1 2 3 4 5 6 7 | importData()
# compile invasive quad data for all parks and most recent survey. Keep ferns in with herbs
inv_guilds <- sumQuadGuilds(speciesType = 'invasive', from = 2015, to = 2018, splitHerb = FALSE)
# compile native quad data for more recent survey in ACAD, with ferns and forbs split in separate guilds
ACAD_guilds <- sumQuadGuilds(speciesType = 'native', from = 2015, to = 2018, splitHerb = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.