Learn R Programming

DChaos (version 0.1-7)

summary.lyapunov: Summary method for a lyapunov object

Description

summary method for class "lyapunov".

Usage

# S3 method for lyapunov
summary(object, ...)

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.

Arguments

object

an object of class "lyapunov" provided by lyapunov.max, lyapunov.spec or lyapunov functions.

...

further arguments passed to or from other methods.

Author

Julio E. Sandubete, Lorenzo Escot

Examples

Run this code
## 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)

Run the code above in your browser using DataLab