cms {dplR}R Documentation

C-Method Standardization

Description

Detrend multiple ring-width series simultaneously using the C-method.

Usage

  cms(rwl,po)

Arguments

rwl a data.frame with series as columns and years as rows such as that produced by read.rwl
po a data.frame containing two variables. Variable one (series in the example below) gives the series ID as either characters or factors. These must exactly match colnames(rwl). Variable two (pith.offset in the example below) must be integers and give the years from the begining of the core to the pith (or center) of the tree.

Details

This method detrends and standardizes tree-ring series by calculating a growth curve based on constant annual basal area increment. The method is based on the “assumption that constant growth is expressed by a constant basal area increment distributed over a growing surface” (Biondi and Qeadan (2008). The detrending is the estimation and removal of the tree's natural biological growth trend. The standardization is done by dividing each series by the growth trend to produce units in the dimensionless ring-width index (RWI).

This attempts to remove the low frequency variability that is due to biological or stand effects.

See the reference below for further details.

Value

A data.frame containing the dimensionless and detrended ring widths indices with column names, row names and dimensions of rwl.

Note

DendroLab website: http://dendrolab.org/

Author(s)

Code by DendroLab, University of Nevada Reno, USA and adapted for dplR by Andy Bunn

References

Biondi, F. and Qeadan, F. (2008) A theory-driven approach to tree-ring standardization: Defining the biological trend from expected basal area increment. Tree-Ring Research 64(2): 81-96.

See Also

detrend, chron, rcs

Examples

  data(gp.rwl)
  data(gp.po)
  gp.rwi <- cms(rwl=gp.rwl,po=gp.po)
  gp.crn <- chron(gp.rwi)
  crn.plot(gp.crn,add.spline=TRUE,ylim=c(0,2.5))

[Package dplR version 1.2 Index]