Description Usage Arguments Value Examples
View source: R/joinRegenData.R
This function combines seedling and sapling data, and calculates stocking index. Must run importData first.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
speciesType |
Allows you to filter on native, exotic or include all species.
|
canopyForm |
Allows you to filter on native, exotic or include all species.
|
numMicros |
Allows you to select 1, 2, or 3 microplots of data to summarize |
units |
Calculates seedling and sapling densities based on different units.
|
returns a dataframe with seedling and sapling densities, and stocking index
1 2 3 4 5 6 7 8 9 | importCSV('./forest_csvs/')
# compile seedling and sapling data for all parks and all species in most recent cycle
regen_data <- joinRegenData(canopyForm = 'all', from = 2015, to = 2018)
# 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.