densityTree | R Documentation |
Density of trees per plot.
densityTree(number, area, overall = TRUE)
number |
numeric, vector of tree count in each plot. |
area |
numeric, area of a plot. |
overall |
logical, if |
If every plot have same area, area
is a numeric value,
otherwise area
is a vector of each plot area.
Vector of density.
densityRegen
for regeneration density.
count <- setNames(
c(87, 104, 83, 132, 107, 84, 110, 115, 112, 94),
LETTERS[1:10]
)
densityTree(count, 10)
densityTree(count, area = 10, overall = FALSE)
densityTree(count, area = 10:19, overall = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.