loreyHeight {dendrometry}R Documentation

Lorey's mean height

Description

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

Usage

loreyHeight(basal, height)

Arguments

basal

numeric, individual basal areas.

height

numeric vector of individual heights.

Value

Average Lorey height of a species.

See Also

height, basal_i

Examples

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)

[Package dendrometry version 0.0.2 Index]