Merged
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #48 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 4 4
Lines 312 312
Branches 52 52
=========================================
Hits 312 312 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR bumps the version to 0.2.1 and adds the changelog entry documenting all changes merged to master since v0.2.0.
What's in this release
Bug fixes
higuchi_fd: off-by-one in the inner loop — summed N_m - 1 differences per sub-series instead of N_m, causing a systematic underestimate of curve length.sample_entropy: returnsnp.nan(was 0) when no template of length m matches within tolerance — entropy is undefined in that case, not zero.utils.py(silent 10× error in the DFA linear regression guard).all = [...]→__all__ = [...]in all three source modules — previously leaked np, jit, KDTree, etc. into the public namespace onfrom antropy import *.New feature
hjorth_params(sf=None): optional sampling frequency parameter converts mobility from samples⁻¹ to Hz.Docs
higuchi_fddocstring formula to match the fix above.lziv_complexity,num_zerocross,spectral_entropy,detrended_fluctuation, andhjorth_params.