Learn R Programming

dendrometry (version 0.0.4)

loreyHeight: Lorey's mean height

Description

The average height of the trees in a plot, weighted by their basal area.

Usage

loreyHeight(basal, height)

Value

Average Lorey height of a stand.

Arguments

basal

numeric, vector of trees' individual basal area.

height

numeric, vector of trees' individual height.

See Also

height, basal_i

Examples

Run this code
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)

Run the code above in your browser using DataLab