Description Usage Arguments Value Examples
Takes output of a demographic analysis (produced by functions growth, mortality, or pop.change) and converts into one dataframe. Only indicated dbh categories are included.
1 2 | assemble.demography(output, type = "g", whichdbhcat = 1,
date1 = "1960-1-1")
|
output |
The results from one of the demographic functions |
type |
A character. Either |
whichdbhcat |
A number indicating how many dbh categories to include, cannot exceed the number of columns in output. |
date1 |
date of first enumeration at site, format: yyyy-mm-dd. |
A dataframe.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Not run:
data = pop.change(
bciex::bci12t5mini, bciex::bci12t6mini,
split1 = bciex::bci12t5mini$sp
)
result = assemble.demography(data, type = 'a', whichdbhcat = 1)
data = growth(bciex::bci12t5mini, bciex::bci12t6mini, split1 = bciex::bci12t5mini$sp)
result = assemble.demography(data, type = 'g', whichdbhcat = 1)
data = mortality.eachspp(
bciex::bci12t5mini, bciex::bci12t6mini,
classbreak = c(10, 100)
)
result1 = assemble.demography(data, type = 'm', whichdbhcat = 1)
result2 = assemble.demography(data, type = 'm', whichdbhcat = 2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.