-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Finish multiscale API * Fix erroneous docstring for `StatisticalComplexity` Fixes #401 * Improve docs * Update docs/src/multiscale.md Co-authored-by: George Datseris <[email protected]> * Update src/multiscale/composite.jl Co-authored-by: George Datseris <[email protected]> * Update docs/src/multiscale.md Co-authored-by: George Datseris <[email protected]> * Update docs/src/multiscale.md Co-authored-by: George Datseris <[email protected]> * Update docs/src/multiscale.md Co-authored-by: George Datseris <[email protected]> * Update src/multiscale/multiscale.jl Co-authored-by: George Datseris <[email protected]> * Update src/multiscale/multiscale.jl Co-authored-by: George Datseris <[email protected]> * Update src/multiscale/multiscale.jl Co-authored-by: George Datseris <[email protected]> * Adjust interface so that scale are in constructors + more tests * Fix doc example * New syntax in doc example * Update docs/src/multiscale.md Co-authored-by: George Datseris <[email protected]> --------- Co-authored-by: George Datseris <[email protected]>
- Loading branch information
Showing
20 changed files
with
819 additions
and
337 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Multiscale | ||
|
||
## Introduction | ||
|
||
Multiscale complexity analysis is pervasive in the nonlinear time series analysis | ||
literature. Although their names, like "refined composite multiscale dispersion entropy", | ||
might seem daunting, they're actually conceptually very simple. A multiscale complexity | ||
measure is just any regular complexity measure | ||
computed on several gradually more coarse-grained samplings of the input data | ||
([example](@ref multiscale_example)). | ||
|
||
We've generalized this type of analysis to work with complexity measure that can | ||
be estimated with ComplexityMeasures.jl. | ||
|
||
## Multiscale API | ||
|
||
The multiscale API is defined by the functions | ||
|
||
- [`multiscale`](@ref) | ||
- [`multiscale_normalized`](@ref) | ||
- [`downsample`](@ref) | ||
|
||
which dispatch any of the [`MultiScaleAlgorithm`](@ref)s listed below. | ||
|
||
```@docs | ||
multiscale | ||
multiscale_normalized | ||
MultiScaleAlgorithm | ||
RegularDownsampling | ||
CompositeDownsampling | ||
downsample | ||
``` | ||
|
||
## Example literature methods | ||
|
||
A non-exhaustive list of literature methods, and the syntax to compute them, are listed | ||
below. Please open an issue or make a pull-request to | ||
[ComplexityMeasures.jl](https://github.com/JuliaDynamics/ComplexityMeasures.jl) if you | ||
find a literature method missing from this list, or if you publish a paper based on some | ||
new multiscale combination. | ||
|
||
| Method | Syntax example | Reference | | ||
| ----------------------------------------------------- | ------------------------------------------------------------------------------ | ------------------ | | ||
| Refined composite multiscale dispersion entropy | `multiscale(CompositeDownsampling(), Dispersion(), est, x, normalized = true)` | [Azami2017](@cite) | | ||
| Multiscale sample entropy (first moment) | `multiscale(RegularDownsampling(f = mean), SampleEntropy(x), x)` | [Costa2002](@cite) | | ||
| Generalized multiscale sample entropy (second moment) | `multiscale(RegularDownsampling(f = std), SampleEntropy(x), x)` | [Costa2015](@cite) | |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
a170f33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
a170f33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request updated: JuliaRegistries/General/108225
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: