EntropyHub
An open-source toolkit for entropic data analysis
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
✓DOI references
Found 4 DOI reference(s) in README -
✓Academic publication links
Links to: springer.com, mdpi.com, aps.org -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.2%) to scientific vocabulary
Keywords
Repository
An open-source toolkit for entropic data analysis
Basic Info
- Host: GitHub
- Owner: MattWillFlood
- License: apache-2.0
- Language: Julia
- Default Branch: master
- Homepage: https://mattwillflood.github.io/EntropyHub.jl/stable
- Size: 2.18 MB
Statistics
- Stars: 27
- Watchers: 3
- Forks: 2
- Open Issues: 0
- Releases: 9
Topics
Metadata Files
README.md
EntropyHub: An open-source toolkit for entropic data analysis
Julia Edition
Latest Update
v2.0
----- New multivariate methods -----
Five new multivariate entropy functions incorporating several method-specific variations
> Multivariate Sample Entropy
> Multivariate Fuzzy Entropy [++ many fuzzy functions]
> Multivariate Dispersion Entropy [++ many symbolic sequence transforms]
> Multivariate Cosine Similarity Entropy
> Multivariate Permutation Entropy [++ amplitude-aware, edge, phase, weighted and modified variants]
----- New multivariate multiscale methods -----
Two new multivariate multiscale entropy functions
> Multivariate Multiscale Entropy [++ coarse, modified and generalized graining procedures]
> Composite and Refined-composite Multivariate Multiscale Entropy
----- Extra signal processing tools -----
WindowData() is a new function that allows users to segment data (univariate or multivariate time series) into windows with/without overlapping samples! This allows users to calculate entropy on subsequences of their data to perform analyses with greater time resolution.
Other little fixes...
----- Docs edits -----
- Examples in the www.EntropyHub.xyz documentation were updated to match the latest package syntax.
Welcome
This toolkit provides a wide range of functions to calculate different entropy statistics. There is an ever-growing range of information-theoretic and dynamical systems entropy measures presented in the scientific literature. The goal of EntropyHub is to integrate the many established entropy methods in one open-source package.
About
Information and uncertainty can be regarded as two sides of the same coin: the more uncertainty there is, the more information we gain by removing that uncertainty. In the context of information and probability theory, Entropy quantifies that uncertainty. Attempting to analyse the analog world around us requires that we measure time in discrete steps, but doing so compromises our ability to measure entropy accurately. Various measures have been derived to estimate entropy (uncertainty) from discrete time series, each seeking to best capture the uncertainty of the system under examination. This has resulted in many entropy statistics from approximate entropy and sample entropy, to multiscale sample entropy and refined-composite multiscale cross-sample entropy.
The goal of EntropyHub is to provide a comprehensive set of functions with a simple and consistent syntax that allows the user to augment parameters at the command line, enabling a range from basic to advanced entropy methods to be implemented with ease.
It is important to clarify that the entropy functions herein described estimate entropy in the context of probability theory and information theory as defined by Shannon, and not thermodynamic or other entropies from classical physics.
Installation
There are two ways to install EntropyHub for Julia.
Method 1:
In Julia, open the package REPL by typing
]. The command line should appear as:@vX.Y. pkg>Where X and Y refer to your version of Julia.
Type:
add EntropyHub(Note: this is case sensitive)
Alternatively, one can use the Pkg module to perform the same procedure:
using Pkg
Pkg.add("EntropyHub")
Method 2:
In Julia, open the package REPL by typing
]. The command line should appear as:@vX.Y. pkg>Where X and Y refer to your version of Julia.
Type:
add https://github.com/MattWillFlood/EntropyHub.jl(Note: this is case sensitive)
System Requirements
There are several package dependencies which will be installed alongside EntropyHub (if not already installed):
DSP, FFTW, HTTP, Random, Plots, StatsBase, StatsFuns, GroupSlices, Statistics, DelimitedFiles, Combinatorics, LinearAlgebra, DataInterpolations, Clustering
EntropyHub was designed using Julia 1.5 and is intended for use with Julia versions >= 1.2.
Documentation & Help
A key advantage of EntropyHub is the comprehensive documentation available to help users to make the most of the toolkit.
To learn more about a specific function, one can do so easily from the command line by typing: ?, which will open the julia help system, and then typing the function name.
For example:
julia> ?
help?> SampEn # Documentation on sample entropy function
julia> ?
help?> XSpecEn # Documentation on cross-spectral entropy function
julia> ?
help?> hXMSEn # Documentation on hierarchical multiscale cross-entropy function
All information on the EntropyHub package is detailed in the EntropyHub Guide, a .pdf document available here.
Functions
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.
The following tables outline the functions available in the EntropyHub package.
When new entropies are published in the scientific literature, efforts will be made to incorporate them in future releases.
Base Entropies:
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 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 Range Entropy | RangEn Diversity Entropy | DivEn
Cross Entropies:
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
Multivariate Entropies:
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
Bidimensional Entropies
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
Multiscale Entropy Functions
Entropy Type | Function Name --|-- Multiscale Entropy | MSEn Composite/Refined-Composite Multiscale Entropy | cMSEn Refined Multiscale Entropy | rMSEn Hierarchical Multiscale Entropy | hMSEn
Multiscale Cross-Entropy Functions
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
Multivariate Multiscale Entropy Functions
Entropy Type | Function Name --|-- Multivariate Multiscale Entropy | MvMSEn Composite/Refined-Composite Multivariate Multiscale Entropy | cMvMSEn
Other Functions
Entropy Type | Function Name --|-- Example Data Import Tool | ExampleData Window Data Tool | WindowData Multiscale Entropy Object | MSobject
License and Terms of Use
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://github.com/MattWillFlood/EntropyHub
Contact
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.
If you have any questions about the package, please do not hesitate to contact us at: info@entropyhub.xyz If you identify any bugs, please contact us at: fix@entropyhub.xyz If you need any help installing or using the toolkit, please contact us at: help@entropyhub.xyz
Thank you for using EntropyHub.
Matt
___ _ _ _____ _____ ____ ____ _ _
| _|| \ | ||_ _|| \| || || \ / | ___________
| \_ | \| | | | | __/| || __| \ \_/ / / _______ \
| _|| \ \ | | | | \ | || | \ / | / ___ \ |
| \_ | |\ | | | | |\ \ | || | | | | | / \ | |
|___||_| \_| |_| |_| \_||____||_| |_| _|_|__\___/ | |
_ _ _ _ ____ / |__\______\/ |
| | | || | | || \ An open-source | /\______\__|_/
| |_| || | | || | toolkit for | | / \ | |
| _ || | | || \ entropic time- | | \___/ | |
| | | || |_| || \ series analysis | \_______/ |
|_| |_|\_____/|_____/ \___________/
Owner
- Name: Matt
- Login: MattWillFlood
- Kind: user
- Website: https://mattwillflood.github.io/Bio/
- Repositories: 3
- Profile: https://github.com/MattWillFlood
Citation (CITATION.bib)
@misc{EntropyHub.jl,
title = {EntropyHub: An Open-source Toolkit for Entropic Time Series Analysis},
author = {Flood, Matthew W. and Grimm, Bernd},
journal = {PLoS ONE},
volume = {16},
number = {11},
pages = {e0259448},
year = {2021},
publisher = {Public Library of Science},
doi = {10.1371/journal.pone.0259448},
url = {https://doi.org/10.1371/journal.pone.0259448},
}
GitHub Events
Total
- Watch event: 3
Last Year
- Watch event: 3
Committers
Last synced: about 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| Matt | m****d@g****m | 42 |
| MattWillFlood | 5****d | 8 |
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 6
- Total pull requests: 0
- Average time to close issues: 11 months
- Average time to close pull requests: N/A
- Total issue authors: 6
- Total pull request authors: 0
- Average comments per issue: 8.33
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- Datseris (1)
- jakubMitura14 (1)
- MattWillFlood (1)
- duodenum96 (1)
- JuliaTagBot (1)
- IanButterworth (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- julia 1 total
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 6
juliahub.com: EntropyHub
An open-source toolkit for entropic data analysis
- Homepage: https://mattwillflood.github.io/EntropyHub.jl/stable
- Documentation: https://docs.juliahub.com/General/EntropyHub/stable/
- License: Apache-2.0
-
Latest release: 2.0.0
published almost 2 years ago
Rankings
Dependencies
- actions/checkout v2 composite
- julia-actions/setup-julia latest composite
- JuliaRegistries/TagBot v1 composite
- actions/checkout v2 composite