View source: R/growth_summary.R
growth_summary | R Documentation |
Requires a data frame where separate measurements of the same tree appear in different rows and returns a data frame with a single row for each tree containing annual growth measurements.
growth_summary(data)
data |
A dataframe containing repeated measurements of growth. Must
have a column named "tree_id" that contains unique tree ID values, a column
named "year" containing the year of the measurement, and a column named
"dbh" containing the dbh measurements.See built-in dataset |
A dataframe containing growth rate measurements for each tree:
unique identification code of the tree
name of stand in which tree is located - only appears if
input dataframe contains a stand_id
column
species identity of tree as a four letter code
year of first size measurement of the tree
year of last size measurement of the tree
first size measurement as diameter at breast height, in cm
last size measurement as diameter at breast height, in cm
average size across measurements as diameter at breast height, in cm
average of maximum and minimum size across measurements as diameter at breast height, in cm
annual growth rate as average yearly increase in diameter at breast height, in cm/year
annual basal area increment as average yearly increase in area at breast height, in cm^2/year
square root of annual_growth
divided by
begin_size
to give somewhat normally distributed growth rates
square root of annual_bai
divided by
begin_size
to give somewhat normally distributed growth rates
growth_summary(tree)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.