summary.lyapunov: Summary method for a lyapunov object

View source: R/summary.lyapunov.R

summary.lyapunovR 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 "lyapunov" provided by lyapunov.max, lyapunov.spec or lyapunov functions.

...

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)

DChaos documentation built on March 31, 2023, 6:48 p.m.