Description Usage Arguments See Also Examples
Calculates growth for each species in given dbh categories. It creates
the split variables then uses growth()
.
1 2 3 | growth.eachspp(census1, census2, classbreak = c(10, 100, 300),
dbhunit = "mm", mindbh = 10, growthcol = "dbh", err.limit = 4,
maxgrow = 75, rounddown = FALSE, method = "I", stdev = FALSE)
|
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 |
mindbh |
The minimum diameter above which the counts are done. Trees
smaller than |
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. |
growth()
and abundance()
1 2 3 4 5 6 7 8 | ## Not run:
growth.result <- growth.eachspp(
bci12full5,
bci12full6,
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.