summary.lyapunov {DChaos} | R Documentation |
Summary method for a lyapunov object
Description
summary method for class "lyapunov".
Usage
## S3 method for class 'lyapunov'
summary(object, ...)
Arguments
object |
an object of class |
... |
further arguments passed to or from other methods. |
Value
This function summary.lyapunov
computes and returns a list of summary statistics of the results given in a lyapunov
object using the components (list elements) from its argument.
Author(s)
Julio E. Sandubete, Lorenzo Escot
Examples
## set.seed(34)
## Simulates time-series data from the Logistic map with chaos
## ts <- DChaos::logistic.sim(n=1000, a=4)
## show(head(ts, 5))
## Summary method for a lyapunov object (only 1 method)
## jacobian <- DChaos::jacobian.net(data=ts, m=3:3, lag=1:1, timelapse="FIXED", h=2:10)
## exponent <- DChaos::lyapunov.spec(data=jacobian, blocking="BOOT", B=100, doplot=FALSE)
## summary(exponent)
## Summary method for a lyapunov object (> 1 method)
## exponent <- DChaos::lyapunov(ts, m=3:3, lag=1:1, timelapse="FIXED", h=2:10, w0maxit=100,
## wtsmaxit=1e6, pre.white=TRUE, lyapmethod="SLE", blocking="ALL",
## B=100, trace=1, seed.t=TRUE, seed=56666459, doplot=FALSE))
## summmary(exponent)
[Package DChaos version 0.1-7 Index]