plot.chaos01.rqa.sequence {Chaos01} | R Documentation |
Plot the results for the sequence of eps values.
Description
This function plot the selected variables of RQA as a sequence for the different values of epsilon.
Usage
## S3 method for class 'chaos01.rqa.sequence'
plot(x, plotvar = c("RR", "DET"),
type = NULL, ...)
Arguments
x |
the object of "rqa.sequence" class, produced by rqa.seq function. |
plotvar |
vector/list of strings of variables which should be plotted.
Default = c("RR", DET"). |
type |
string what type of plot should be drawn: see |
... |
arguments to be passed as graphical parameters. |
References
N. Marwan; M. C. Romano; M. Thiel; J. Kurths (2007). "Recurrence Plots for the Analysis of Complex Systems". Physics Reports. 438 (5-6): 237. Bibcode:2007PhR...438..237M. doi:10.1016/j.physrep.2006.11.001.
See Also
Examples
vec.x <- gen.logistic(mu = 3.55, iter = 2000)
x.range <- diff(range(vec.x))
from = 0.01 * x.range
by = 0.1 * x.range
# Output for each value of c
res <- rqa.seq(vec.x, from = from, to = x.range, by = by, TS = vec.x, dim = 3, lag = 10)
plotvar <- c("RR", "DET", "RATIO", "LAM")
par(mfrow = c(2,2))
plot(res, plotvar = plotvar)