-
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.
Compatibility with StateSpaceSets v2 (#392)
* update compat with statespacesets 2 * Depend on AbstractStateSpaceSet, not deprecated AbstractDataset * sssets v2 * temporary constructor for multiple dataset inputs the current statespacesets v2.3 constructor is way too slow * Fix transfer entropy transfer operator estimation * shuffle order, so utils are loaded first * horizontal concatenation * Use correct name, not the deprecated one * Use local variables * Explicitly test vector + statespaceset input * move agreement test to utils * Add more OCE tests * Fix marginal construction * use local variables * Improve docstrings * Update changelog * Set minimum julia version to LTS release
- Loading branch information
Showing
21 changed files
with
157 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name = "Associations" | |
uuid = "614afb3a-e278-4863-8805-9959372b9ec2" | ||
authors = ["Kristian Agasøster Haaga <[email protected]>", "Tor Einar Møller <[email protected]>", "George Datseris <[email protected]>"] | ||
repo = "https://github.com/kahaaga/Associations.jl.git" | ||
version = "4.2.0" | ||
version = "4.3.0" | ||
|
||
[deps] | ||
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697" | ||
|
@@ -32,23 +32,23 @@ TimeseriesSurrogates = "c804724b-8c18-5caa-8579-6025a0767c70" | |
[compat] | ||
Accessors = "^0.1.28" | ||
Combinatorics = "1" | ||
ComplexityMeasures = "3.6.5" | ||
ComplexityMeasures = "3.7.3" | ||
DSP = "^0.7" | ||
DelayEmbeddings = "2.7" | ||
DelayEmbeddings = "2.8" | ||
Distances = "^0.10" | ||
Distributions = "^0.25" | ||
Graphs = "^1.11" | ||
HypothesisTests = "^0.11" | ||
Neighborhood = "^0.2.4" | ||
ProgressMeter = "1.10" | ||
RecurrenceAnalysis = "2" | ||
RecurrenceAnalysis = "2.1" | ||
Reexport = "1" | ||
Scratch = "1" | ||
SpecialFunctions = "2" | ||
StateSpaceSets = "^1.5" | ||
StateSpaceSets = "2.1" | ||
StaticArrays = "^1" | ||
Statistics = "1" | ||
StatsBase = "^0.34" | ||
StyledStrings = "1" | ||
TimeseriesSurrogates = "2.6" | ||
julia = "^1.10" | ||
TimeseriesSurrogates = "2.7" | ||
julia = "^1.10.6" |
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 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 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 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,9 @@ | ||
# This is a workaround until we can make faster horizontal concatenation in StateSpaceSets.jl | ||
import StateSpaceSets: StateSpaceSet | ||
using StaticArrays: SVector | ||
export StateSpaceSet | ||
|
||
function StateSpaceSet(x::VectorOrStateSpaceSet...; container = SVector) | ||
xs = (xᵢ isa AbstractStateSpaceSet ? Matrix(xᵢ) : reshape(xᵢ, length(xᵢ), 1) for xᵢ in x) | ||
StateSpaceSet(hcat(xs...); container) | ||
end |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include("logs.jl") | ||
include("multidimensional_surrogates.jl") | ||
include("statespaceset_concat.jl") |
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 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
Oops, something went wrong.
1054b8f
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
1054b8f
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 created: JuliaRegistries/General/119596
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: