Learn R Programming

dplR (version 1.3.7)

combine.rwl: Combine tree-ring data sets

Description

This function combines any number of data.frames of tree-ring data into one data.frame.

Usage

combine.rwl(x, y = NULL)

Arguments

x
either a data.frame to be combined with y, or a list of data.frames to be combined.
y
a data.frame to be combined with data.frame x.

Value

  • A data.frame with the series in columns and the years as rows. The keycodes are the column names and the years are the row names.

Examples

Run this code
data(ca533)
data(co021)
combine.rwl(list(ca533, co021))
## or alternatively for data.frames to combine
combine.rwl(ca533, co021)

Run the code above in your browser using DataLab