Description Usage Arguments Value Examples
This calculates forest-wide growth in given dbh categories.
1 2 3 | growth.dbh(census1, census2, classbreak = c(10, 100, 300),
dbhunit = "mm", growthcol = "dbh", err.limit = 4, maxgrow = 75,
rounddown = FALSE, method = "I", stdev = FALSE, mindbh = 10)
|
census1 |
The R Analytical Table for a single census, either tree or stem. |
census2 |
The matching R Analytical Table for a later census. |
dbhunit |
'cm' or 'mm', only used for basal area |
growthcol |
defines how growth is measured, either 'dbh'or 'agb'(agb=biomass) |
err.limit |
A number. Numbers such as 10000 are high and will return all measures. |
maxgrow |
A number. Numbers such as 10000 are high and will return all measures. |
rounddown |
If TRUE, all dbh < 55 are rounded down to the nearest multiple of 5. |
method |
Use 'I' to calculate annual dbh increment: (dbh2 - dbh1)/time, or 'E' to calculate the relative growth rate (log(dbh2) - log(dbh1))/time. |
stdev |
Logical. Default (FALSE) returns confidence limits, otherwise returns the SD in growth rate per group. |
mindbh |
The minimum diameter above which the counts are done. Trees
smaller than |
A list of arrays; values are provided for each DBH class.
1 2 3 4 5 6 | ## Not run:
growth.dbh <- growth.eachspp(
bciex::bci12t5mini, bciex::bci12t6mini,
classbreak = c(10, 50, 100, 300, 500))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.