pointer.rgc | R Documentation |
The function calculates event and pointer years on a data.frame
with tree-ring series using the relative growth change method, described as abrupt growth change method in Schweingruber et al. (1990). This method relates tree growth in year i
to the average growth of n
preceding years. Thresholds for event- and pointer-year calculations can be adjusted.
pointer.rgc(data, period = NULL, nb.yrs = 4, rgc.thresh.pos = 60, rgc.thresh.neg = 40,
series.thresh = 75, make.plot = FALSE)
data |
a |
period |
a |
nb.yrs |
an |
rgc.thresh.pos |
a |
rgc.thresh.neg |
a |
series.thresh |
a |
make.plot |
a |
The function calculates the ratio of tree growth in year t
and the average growth of n
preceding years for individual trees. Resulting relative growth changes are used to identify event years for trees, and these event years to define pointer years for the site.
Following Schweingruber et al. (1990), nb.yrs
, rgc.thresh.pos
, rgc.thresh.neg
and series.thresh
are set to 4, 60, 40 and 75 respectively, meaning that a positive or negative pointer year will be defined when at least 75% of the tree-ring series display an event year with a growth increase or decrease of at least 60% or 40%, respectively, relative to the average growth in the four preceding years. Depending on the sensitivity of the tree-ring series, the thresholds rgc.thresh.pos
and rgc.thresh.neg
may be adjusted (e.g., lowered for more complacent series; Jetschke et al. 2019).
Note that the resulting time series are truncated by nb.yrs
at the beginning inherent to the calculation method.
The function returns a list
containing the following components:
rgc |
a |
EYvalues |
a |
out |
a |
spec.param |
a |
Marieke van der Maaten-Theunissen and Ernst van der Maaten.
Jetschke, G., van der Maaten, E. and van der Maaten-Theunissen, M. (2019) Towards the extremes: A critical analysis of pointer year detection methods. Dendrochronologia 53: 55-62.
Schweingruber, F.H., Eckstein, D., Serre-Bachet, F. and Bräker, O.U. (1990) Identification, presentation and interpretation of event years and pointer years in dendrochronology. Dendrochronologia 8: 9-38.
In writing the function, the code of the dplR function pointer
(Pierre Mérian) was used as a reference.
## Calculate pointer years on tree-ring series
data(s033)
py1 <- pointer.rgc(s033)
head(py1$out)
## Calculate pointer years with user-defined arguments
data(s033)
py2 <- pointer.rgc(s033, period = c(1950,2010), nb.yrs = 5, rgc.thresh.pos = 50,
rgc.thresh.neg = 50, series.thresh = 50, make.plot = TRUE)
head(py2$out)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.