apply_volume_eq | R Documentation |
Apply the volume equation (eq. 1 in publication) from RP NC-250 using provided dbh, height to merchantable limit, and coefficients from Table 1 in the publication.
apply_volume_eq(dbh, height, b0, b1)
dbh |
vector of DBH observations in inches |
height |
vector of heights to which to estimate volume |
b0, b1 |
vector of model coefficients from Table 2 or Table 3 |
The volume equation is as follows:
V = b_0 + b_1 D^2 H
Where:
V
is the volume in either cubic feet or board feet
b_0
and b_1
are species specific coefficients from Table
1
D
is diameter at breast height in inches
H
height to which volume is to be computed
vector of volume estimates
## Not run:
apply_volume_eq(
dbh = 10,
height = 40
b0 = table2$b0[1],
b1 = table2$b1[1]
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.