Description Usage Arguments Value Author(s) References Examples
Plots the entropy-complexity plane for a given probability, without curves and with zoom on the generated points
1 | HCPlaneZoom(prob)
|
prob |
A numeric vector containing a probability distribution of ordinal patterns |
A Plot with HC Plane with zoom on the points
Eduarda Chagas
Martin, M. T., A. Plastino, and O. A. Rosso. "Generalized statistical complexity measures: Geometrical and analytical properties." Physica A: Statistical Mechanics and its Applications 369.2 (2006): 439-462.
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 <- HCPlaneZoom(prob = probability)
print(p)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.