loreyHeight | R Documentation |
The average height of the trees in a plot, weighted by their basal area.
loreyHeight(basal, height)
basal |
numeric, vector of trees' individual basal area. |
height |
numeric, vector of trees' individual height. |
Average Lorey height of a stand.
height
, basal_i
set.seed(1)
donnee <- data.frame(
hauteur = rnorm(10, 12, 3),
area = basal_i(rnorm(10, 100, 20))
)
loreyHeight(basal = donnee$area, height = donnee$hauteur)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.