Learn R Programming

StratPal (version 0.4.0)

plot.pre_paleoTS: plot pre-paleoTS objects

Description

This functions throws an error on purpose, as pre_paleoTS objects can not be plotted directly. To plot them, first use reduce_to_paleoTS and use plot on the results

Usage

# S3 method for pre_paleoTS
plot(x, ...)

Arguments

x

object

...

other arguments

See Also

reduce_to_paleoTS()

Examples

Run this code
if (FALSE) {
x = stasis_sl(1:4)
# throws error
plot(x)
library("paleoTS")
# correct way to plot pre-paleoTS objects
y = reduce_to_paleoTs(x)
plot(y)
# this plots via the procedures of the paleoTS package (which must be installed and loaded)
}

Run the code above in your browser using DataLab