Description Usage Arguments Value Author(s) References Examples
Plots the Fisher-Shannon Plane for a given probability
1 | FSPlane(prob)
|
prob |
A numeric vector containing a probability distribution of ordinal patterns |
A Plot with FS Plane
Eduarda Chagas
Rosso, Osvaldo A., Felipe Olivares, and Angelo Plastino. "Noise versus chaos in a causal Fisher-Shannon plane." arXiv preprint arXiv:1510.06950 (2015).
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.