Description Usage Arguments Value Author(s) References Examples
View source: R/Distributions.R
Calculates the Bandt-Pompe distribution of the given time series
1 | BandtPompe(series, dimension, delay)
|
series |
A numeric vector (e.g. a time series) |
dimension |
Dimension size of ordinal patterns |
delay |
Size of the embedding delay of ordinal patterns |
A numeric vector containing the probability distribution
Eduarda Chagas
Bandt, Christoph, and Bernd Pompe. "Permutation entropy: a natural complexity measure for time series." Physical review letters 88.17 (2002): 174102.
1 2 3 4 5 | set.seed(123, kind = "Mersenne-Twister")
x <- runif(110000)
d <- 3
del <- 1
BandtPompe(series = x, dimension = d, delay = del)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.