Description Usage Format See Also Examples
This is example forest census data to be analyzed with this package.
1 |
A tibble
Tree identification number. This identifies an individual tree and can be used to connect trees between the two censuses.
Species of the individual
x-coordinate meters from reference point
y-coordinate meters from reference point
Date the stem was measured
Code for additional information on the stem: M means the main stem of the individual tree and R means the stem was lost, but the tag was moved to another stem greater than DBH cutoff, this stands for resprout.
Diameter at breast height of the tree in cm
Other example data objects:
blocks_ex
,
census_2008_bw
,
census_2014_bw
,
census_2_ex
,
comp_bayes_lm_ex
,
focal_vs_comp_ex
,
growth_ex
,
growth_spatial_ex
,
growth_toy
,
species_bw
,
study_region_bw
,
study_region_ex
1 2 3 4 5 6 7 8 9 10 11 12 | library(dplyr)
library(stringr)
growth_ex <-
compute_growth(
census_1 = census_1_ex %>%
mutate(sp = to_any_case(sp) %>% factor()),
census_2 = census_2_ex %>%
filter(!str_detect(codes, "R")) %>%
mutate(sp = to_any_case(sp) %>% factor()),
id = "ID"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.