Releases: nikdon/pyEntropy
Releases · nikdon/pyEntropy
1.0.0
0.9.0
What's Changed
- 0.9.0 (2023-12-20)
BREAKING CHANGE
remove support of python 3.8
Full Changelog: 0.8.5...0.9.0
0.8.5
What's Changed
- refactor(entropy.py): refactoring of all functions and docstrings by @nikdon in #28
- docs(README.md): new section about the ways to contribute by @nikdon in #29
- Add support for python 3.11 by @nikdon in #40
- build: add support for python 3.12 by @nikdon in #41
- build: release 0.8.5 by @nikdon in #42
Full Changelog: 0.8.4...0.8.5
0.8.4
What's Changed
Full Changelog:
0.8.3
0.8.2
0.7.1
0.7.0
0.5.0
Due to changes to permutation_entropy
this release might break compatibility with previous versions.
This release introduces improvements to permutation_entropy
(thanks @raphaelvallat)
- Changed signature of the
def permutation_entropy(time_series, m, delay)
todef permutation_entropy(time_series, order=3, delay=1, normalize=False)
- Increased speed of the
permutation_entropy
- Changed the log base from 10 to 2 in
permutation_entropy
(as per Band and Pompe 2002) - Added normalization to the
permutation_entropy
- Default value for the
permutation_entropy
are changed - More tests
- Cleanup of docs with PEP8 and NumpyDoc