Description Usage Arguments Examples
Collect abundances of all species across several censuses.
1 2 3 | abund.manycensus(allcns = list(bci.full1, bci.full2, bci.full3), mindbh,
dbhunit = "mm", type = "abund", excludespp = NULL,
excludestatus = NULL)
|
allcns |
Full R census, submitted as a list (as many as desired). |
mindbh |
The minimum diameter above which the counts are done. Trees
smaller than |
dbhunit |
'cm' or 'mm', only used for basal area |
type |
Either 'abund' (default) for abundance, 'ba' for basal area, or 'agb'. |
excludespp |
A character vector of species codes can be submitted as
|
excludestatus |
By default, any tree ever given code M is not counted in
any census, but set |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | ## Not run:
N = abund.manycensus(
allcns = list(
bciex::bci12t1mini, bciex::bci12t2mini, bciex::bci12t3mini, bciex::bci12t4mini
),
mindbh = 10,
type = 'abund',
excludespp = 'uniden',
excludestatus = 'M'
)
head(N)
colSums(N)
apply(N,2,countspp)
N = abund.manycensus(
allcns = list(bciex::bci12t5mini, bciex::bci12t6mini),
mindbh = 10,
type = 'abund',
excludespp = c('uniden', 'tremxx'),
excludestatus = NULL
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.