getRwls {xRing} | R Documentation |
Produce a list with 8 data.frames (trw, ew, lw, Dmean, Dew, Dlw, Dmin, Dmax ) that can be used by other packages (dplR, detrendeR)
getRwls(x)
x |
an "xRingList" object |
a list with 8 elements:
a data.frame with tree-ring widths
a data.frame with earlywood widths
a data.frame with latewood widths
a data.frame with mean tree-ring density
a data.frame with mean earlywood density
a data.frame with mean latewood density
a data.frame with the minimum ring density
a data.frame with the maximum ring density
data(PaPiRaw)
data(PaPiSpan)
PaPi <- detectRings(PaPiRaw, PaPiSpan)
PaPi <- combineFrag(PaPi)
PaPi <- detectEwLw(PaPi)
rwls <- getRwls(PaPi)
names(rwls)
library(dplR)
rwl.report(rwls$trw)
library(detrendeR)
RwlInfo(rwls$trw)