Python Edition
There are two ways to install EntropyHub for Python. Method 1 is strongly recommended.
- Using
pip
in your python IDE, type:pip install EntropyHub
- Download the folder above (EntropyHub.x.x.x.tar.gz) and unzip it.
- Open a command terminal (cmd on Windows, terminal on Mac) or use the Anaconda prompt if you use Anaconda as your python package distribution.
- In the command prompt/terminal, navigate to the directory where you saved and extracted the .tar.gz folder.
- Enter the following in the command line:
python setup.py install
There are several package dependencies which will be installed alongside EntropyHub:
Numpy, Scipy, Matplotlib, PyEMD
EntropyHub was designed using Python 3 and thus is not intended for use with Python 2. Python versions > 3.6 are required for using EntropyHub.
A key advantage of EntropyHub is the comprehensive documentation available to help users to make the most of the toolkit.
One can simply access the docstrings of a function (like any Python function) by typing help FunctionName
in the command line,
which will print the docstrings.
All information on the EntropyHub package is detailed in the EntropyHub Guide, a .pdf document available here.
EntropyHub functions fall into 8 categories:
* Base functions for estimating the entropy of a single univariate time series.
* Cross functions for estimating the entropy between two univariate time series.
* Multivariate functions for estimating the entropy of a multivariate dataset.
* Bidimensional functions for estimating the entropy of a two-dimensional univariate matrix.
* Multiscale functions for estimating the multiscale entropy of a single univariate time series using any of the Base entropy functions.
* Multiscale Cross functions for estimating the multiscale entropy between two univariate time series using any of the Cross-entropy functions.
* Multivariate Multiscale functions for estimating the multivariate multiscale entropy of multivariate dataset using any of the Multivariate-entropy functions.
* Other Supplementary functions for various tasks related to EntropyHub and signal processing.
When new entropies are published in the scientific literature, efforts will be made to incorporate them in future releases.
Entropy Type | Function Name |
---|---|
Approximate Entropy | ApEn |
Sample Entropy | SampEn |
Fuzzy Entropy | FuzzEn |
Kolmogorov Entropy | K2En |
Permutation Entropy | PermEn |
Conditional Entropy | CondEn |
Distribution Entropy | DistEn |
Range Entropy | RangEn |
Diversity Entropy | DivEn |
Spectral Entropy | SpecEn |
Dispersion Entropy | DispEn |
Symbolic Dynamic Entropy | SyDyEn |
Increment Entropy | IncrEn |
Cosine Similarity Entropy | CoSiEn |
Phase Entropy | PhasEn |
Slope Entropy | SlopEn |
Bubble Entropy | BubbEn |
Gridded Distribution Entropy | GridEn |
Entropy of Entropy | EnofEn |
Attention Entropy | AttnEn |
Entropy Type | Function Name |
---|---|
Cross Sample Entropy | XSampEn |
Cross Approximate Entropy | XApEn |
Cross Fuzzy Entropy | XFuzzEn |
Cross Permutation Entropy | XPermEn |
Cross Conditional Entropy | XCondEn |
Cross Distribution Entropy | XDistEn |
Cross Spectral Entropy | XSpecEn |
Cross Kolmogorov Entropy | XK2En |
Entropy Type | Function Name |
---|---|
Multivariate Sample Entropy | MvSampEn |
Multivariate Fuzzy Entropy | MvFuzzEn |
Multivariate Permutation Entropy | MvPermEn |
Multivariate Dispersion Entropy | MvDispEn |
Multivariate Cosine Similarity Entropy | MvCoSiEn |
Entropy Type | Function Name |
---|---|
Bidimensional Sample Entropy | SampEn2D |
Bidimensional Fuzzy Entropy | FuzzEn2D |
Bidimensional Distribution Entropy | DistEn2D |
Bidimensional Dispersion Entropy | DispEn2D |
Bidimensional Permutation Entropy | PermEn2D |
Bidimensional Espinosa Entropy | EspEn2D |
Entropy Type | Function Name |
---|---|
Multiscale Entropy | MSEn |
Composite/Refined-Composite Multiscale Entropy | cMSEn |
Refined Multiscale Entropy | rMSEn |
Hierarchical Multiscale Entropy | hMSEn |
Entropy Type | Function Name |
---|---|
Multiscale Cross-Entropy | XMSEn |
Composite/Refined-Composite Multiscale Cross-Entropy | cXMSEn |
Refined Multiscale Cross-Entropy | rXMSEn |
Hierarchical Multiscale Cross-Entropy | hXMSEn |
Entropy Type | Function Name |
---|---|
Multivariate Multiscale Entropy | MvMSEn |
Composite/Refined-Composite Multivariate Multiscale Entropy | cMvMSEn |
Entropy Type | Function Name |
---|---|
Example Data Import Tool | ExampleData |
Window Data Tool | WindowData |
Multiscale Entropy Object | MSobject |
EntropyHub is licensed under the Apache License (Version 2.0) and is free to use by all on condition that the following reference be included on any outputs realized using the software:
Matthew W. Flood (2021),
EntropyHub: An Open-Source Toolkit for Entropic Time Series Analysis,
PLoS ONE 16(11):e0259448
DOI: 10.1371/journal.pone.0259448
www.EntropyHub.xyz
© Copyright 2024 Matthew W. Flood, EntropyHub
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
For Terms of Use see https://www.EntropyHub.xyz
If you find this package useful, please consider starring it on GitHub, MatLab File Exchange, PyPI or Julia Packages as this helps us to gauge user satisfaction.
For general queries and information about EntropyHub, contact: info@entropyhub.xyz If you have any questions or need help using the package, please contact us at: help@entropyhub.xyz If you notice or identify any issues, please do not hesitate to contact us at: fix@entropyhub.xyz
Thank you for using EntropyHub.
Matt