growth.eachspp: Calculate growth for each species in given dbh categories.

Description Usage Arguments See Also Examples

Description

Calculates growth for each species in given dbh categories. It creates the split variables then uses growth().

Usage

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)

Arguments

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 mindbh are excluded. If NULL, all living trees are included.

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.

See Also

growth() and abundance()

Examples

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)

forestgeo/ctfs documentation built on May 3, 2019, 6:44 p.m.