crowdInd | R Documentation |
Forest matrix crowding index - Seydack et al. 2011
crowdInd(dbh, dbh_min = 10, dbh_max = 30)
dbh |
vector of DBH (diameter at breast height) measurements of competitor trees |
dbh_min |
minimum DBH threshold considered |
dbh_max |
maximum DBH threshold considered |
A simple competition index which returns the sum of DBH values of all competitor trees within user-defined DBH thresholds. Armin et al. (2011) use a minimum threshold of 10 cm DBH and a maximum threshold of 30 cm DBH.
value of competition index for focal tree
Armin H.W. Seydack, Graham Durrheim, Josua H. Louw. Spatiotemporally interactive growth dynamics in selected South African forests: Edaphoclimatic environment, crowding and climate effects. Forest Ecology and Management. Volume 261. Issue 7. 2011. Pages 1152-1169.
data(bicuar)
nb <- nearNeighb(bicuar$x, bicuar$y, bicuar$stem_id, k = 4)
lapply(nb, function(x) {
nb <- merge(x, bicuar, by.x = "nb", by.y = "stem_id")
crowdInd(nb$diam, dbh_min = 10, dbh_max = 30)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.