as.paleoTS(mm, vv, nn, tt, MM = NULL, genpars = NULL, label = NULL, start.age = NULL, oldest=c("first", "last"), reset.time=TRUE)
read.paleoTS(file = NULL, oldest = "first", reset.time=TRUE, ...)
paleoTS
data; if NULL
, then opens file.choose
dialogoldest = "last"
start.age
accordingly.read.table
reset.time=TRUE
, that is that time (tt
) starts at zero and increases from there. Do not change this argument unless you know what you are doing.as.paleoTS()
combines time series data into an object of class paleoTS
. This function will usually not be used directly; read.paleoTS()
is more convenient for getting the relevant data from text files.
If no file name is given for read.paleoTS
, the user will be prompted to select a file using the file.choose()
interactive prompt. Samples are assumed to be ordered from oldest to youngest (if not, use oldest="last"
), with ages indicating time elapsed from the beginning of the sequence, rather than geological age before the present. If sample ages decrease through the sequence, as if given in millions of years ago, tt
will automatically be converted to time elapsed from the beginning of the sequence. Generally, setting reset.time
= TRUE is good practice.plot.paleoTS
## create paleoTS object
y <- as.paleoTS(mm=rnorm(10), vv=rep(1,10), nn=rep(25,10), tt=1:10, label="white noise time series")
plot(y)
Run the code above in your browser using DataLab