FSPlane: Plots the Fisher-Shannon Plane for a given probability

Description Usage Arguments Value Author(s) References Examples

View source: R/Planes.R

Description

Plots the Fisher-Shannon Plane for a given probability

Usage

1
FSPlane(prob)

Arguments

prob

A numeric vector containing a probability distribution of ordinal patterns

Value

A Plot with FS Plane

Author(s)

Eduarda Chagas

References

Rosso, Osvaldo A., Felipe Olivares, and Angelo Plastino. "Noise versus chaos in a causal Fisher-Shannon plane." arXiv preprint arXiv:1510.06950 (2015).

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
set.seed(123, kind = "Mersenne-Twister")
x1 <- runif(10000)
x2 <- runif(10000)
x3 <- runif(10000)
d <- 3
del <- 1
probability <- matrix(nrow = 3, ncol = factorial(d))
probability[1,] <- BandtPompe(series = x1, dimension = d, delay = del)
probability[2,] <- BandtPompe(series = x2, dimension = d, delay = del)
probability[3,] <- BandtPompe(series = x3, dimension = d, delay = del)
p <- FSPlane(prob = probability)
print(p)

EduardaChagas/NATS_package documentation built on June 20, 2021, 4:39 a.m.