HCPlaneZoom: Plots the entropy-complexity plane for a given probability,...

Description Usage Arguments Value Author(s) References Examples

View source: R/Planes.R

Description

Plots the entropy-complexity plane for a given probability, without curves and with zoom on the generated points

Usage

1

Arguments

prob

A numeric vector containing a probability distribution of ordinal patterns

Value

A Plot with HC Plane with zoom on the points

Author(s)

Eduarda Chagas

References

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.

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 <- HCPlaneZoom(prob = probability)
print(p)

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