Description Usage Arguments Value Examples
View source: R/joinRegenData.R
This function combines seedling and sapling data, and calculates stocking index at the 1 sq. m level. Quadrat percent cover is also averaged across the quadrats, and only includes cover of seedling sized tree species (i.e. the original protocol method). Stocking index thresholds are 2 for areas with low deer, and 8 for areas with high deer. Must run importData first.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
speciesType |
Allows you to filter on native, exotic or include all species.
|
canopyForm |
Allows you to filter on canopy species only or include all species.
|
units |
Calculates seedling and sapling densities based on different units.
|
returns a dataframe with seedling and sapling densities, stocking index, quadrat seedling cover and quadrat seedling frequency. Quadrat frequency is based on cover > 0 in a quadrat.
1 2 3 4 5 6 7 8 9 10 | importCSV('./forest_csvs/')
# Compile seedling and sapling data for all parks and all species in most recent cycle,
# and only include seedlings >=15cm tall (default).
regen_data <- joinRegenData(canopyForm = 'all', from = 2015, to = 2018)
# compile regen data for canopy-forming (default), native species of all size classes in VAFO for all years
VAFO_regen <- joinRegenData(park = 'VAFO', speciesType = 'native')
# Compile seedling and sapling densities as stems/ha for all parks in most recent survey
regen_data <- joinRegenData(units = 'ha', from = 2015, to = 2018)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.