-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplex projection #150
base: main
Are you sure you want to change the base?
Simplex projection #150
Conversation
Codecov Report
@@ Coverage Diff @@
## master #150 +/- ##
==========================================
- Coverage 68.80% 62.85% -5.95%
==========================================
Files 36 41 +5
Lines 734 840 +106
==========================================
+ Hits 505 528 +23
- Misses 229 312 +83
Continue to review full report at Codecov.
|
Hi @Datseris, Do you think this could belong somewhere in DynamicalSystems.jl? Maybe under the chaos detection section? It is not nearly as sophisticated as the methods you already have, though, and requires visual inspection. I've included a small example in the docs here on how they in original paper use the simplex projection to distinguish chaos from regular behavior in time series. The simplex projection is also used by Sugihara & co to determine optimal embedding dimensions, so I could also put together a small method |
Hi,
Haha every method requires visual inspection if you want to be rigorous! E.g., this |
💩
Perfect. I'll prepare relevant PRs to |
An implementation of the simplex projection algorithm from Sugihara and May (1990), as part of some more cross mapping stuff that is coming. The docs are here.
This probably belongs somewhere in DynamicalSystems, because it can be used to distinguish between deterministic chaos and regular behavior in time series. Keeping track of it here for now, though.