View source: R/plot.pre_paleoTS.R
plot.pre_paleoTS | R Documentation |
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
## S3 method for class 'pre_paleoTS'
plot(x, ...)
x |
object |
... |
other arguments |
reduce_to_paleoTS()
## Not run:
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)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.