View source: R/joinRegenData.R
joinRegenData | R Documentation |
This function combines seedling and sapling data collected in microplots, and calculates the stocking index. Each row represents a species observed per visit. If no seedlings or saplings were observed, function returns "None present" for ScientificName and 0 for densities. Permanently Missing species tallies for species or whole plots have NAs. These are rare, have always been low canopy species initially recorded as shrubs, and mostly occur in data <2011. Note that the stocking index only includes saplings < 2.5cm DBH, but the sapling density returned is all saplings > 1cm and <10cm DBH. For the few plots with > 10 saplings of a given species in a microplot, their counts are included in the stocking index only if the average DBH of saplings measured is <=2.5 cm. This may underestimate the stocking index for those plots, but their index values are still way higher than most plots. Must run importData() or importCSV() first.
joinRegenData(
park = "all",
from = 2006,
to = as.numeric(format(Sys.Date(), "%Y")),
QAQC = FALSE,
panels = 1:4,
locType = c("VS", "all"),
eventType = c("complete", "all"),
speciesType = c("all", "native", "exotic", "invasive"),
canopyForm = c("all", "canopy"),
numMicros = 3,
units = c("micro", "sq.m", "ha", "acres"),
...
)
park |
Combine data from all parks or one or more parks at a time. Valid inputs:
|
from |
Year to start analysis, ranging from 2006 to current year |
to |
Year to stop analysis, ranging from 2006 to current year |
QAQC |
Allows you to remove or include QAQC events.
|
panels |
Allows you to select individual panels from 1 to 4. Default is all 4 panels (1:4). If more than one panel is selected, specify by c(1, 3), for example. |
locType |
Allows you to only include plots that are part of the GRTS sample design or include all plots, such as deer exclosures.
|
eventType |
Allows you to include only complete sampling events or all sampling events
|
speciesType |
Allows you to filter on native, exotic or include all species.
|
canopyForm |
Allows you to filter on species growth form
|
numMicros |
Allows you to select 1, 2, or 3 microplots of data to summarize |
units |
Calculates seedling and sapling densities based on different units.
|
... |
Other arguments passed to function. |
returns a dataframe with seedling and sapling densities, and stocking index metrics for each species observed per visit.
## Not run:
importCSV('./forest_csvs/')
# compile seedling and sapling data for all parks and all species in cycle 3
regen_data <- joinRegenData(canopyForm = 'all', from = 2014, to = 2017)
# compile regen data for only canopy-forming (default) and native species in SAGA for all years
SAGA_regen <- joinRegenData(park = 'SAGA', speciesType = 'native')
# compile only 1 microplot of data for ACAD native canopy-forming species for all but first year
ACAD_regen_m1 <- joinRegenData(park = 'ACAD', speciesType = 'native', numMicros = 1, from = 2007)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.