dbh | R Documentation |
DBH
computes diameter (at breast height) based on
circumference (at breast height).
circum
computes circumference (at breast height) based on diameter
(at breast height).
They are based on circle diameter and perimeter formulas.
dbh(circum)
circum(dbh)
circum |
numeric, vector of circumference. |
dbh |
numeric, vector of diameter. |
dbh
, returns diameter and circum
, returns circumference.
See also height
for tree height.
perimeter <- seq(30, 60, 1.4)
diameter <- dbh(perimeter)
circum(diameter)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.