data(co021)
x <- co021[,33]
x.yrs <- as.numeric(rownames(co021))
x.name <- colnames(co021)[33]
# On a raw ring width series - undated
skel.plot(x)
# On a raw ring width series - dated with names
skel.plot(x, yr.vec = x.yrs, sname= x.name, master=TRUE)
# try cross-dating
y <- co021[,11]
y.yrs <- as.numeric(rownames(co021))
y.name <- colnames(co021)[11]
# send to postscript - 3 pages total
postscript('xdating.examp.ps')
# 'Master series' with correct calendar dates
skel.plot(x, yr.vec = x.yrs, sname= x.name, master=TRUE)
# Undated series, try to align with last plot
skel.plot(y)
# Here's the answer...
skel.plot(y, yr.vec = y.yrs, sname= y.name)
dev.off()
# alternatively send to pdf
pdf('xdating.examp.pdf', width = 10, height = 7.5, paper = 'USr')
skel.plot(x, yr.vec = x.yrs, sname= x.name, master=TRUE)
skel.plot(y)
skel.plot(y, yr.vec = y.yrs, sname= y.name)
dev.off()
Run the code above in your browser using DataLab