Skip to content

Commit

Permalink
Better docstring for recurrence threshold (#161)
Browse files Browse the repository at this point in the history
* remove outdated `fixedrate` keyword

* more explanatory docstrings for recurrence threshold

* bump version

* remove references to windowed macro
  • Loading branch information
Datseris committed Jun 9, 2024
1 parent b1b3f6c commit 64229ed
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 286 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RecurrenceAnalysis"
uuid = "639c3291-70d9-5ea2-8c5b-839eba1ee399"
repo = "https://github.com/JuliaDynamics/RecurrenceAnalysis.jl.git"
version = "2.0.6"
version = "2.0.7"

[deps]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/quantification.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ rqa

---

See also the [`@windowed`](@ref) macro for a windowed version of `rqa`.
See also the [`windowed`] function for a windowed version of `rqa`.

## Example

Expand Down
2 changes: 1 addition & 1 deletion docs/src/rplots.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ using RecurrenceAnalysis, DelayEmbeddings, CairoMakie
data = sin.(2*π .* (0:400)./ 60)
Y = embed(data, 3, 15)
R = RecurrenceMatrix(Y, 0.25; fixedrate=true)
R = RecurrenceMatrix(Y, GlobalRecurrenceRate(0.25))
R_skel = skeletonize(R)
fig = Figure(resolution = (1000,600))
Expand Down
23 changes: 13 additions & 10 deletions src/matrices/recurrence_matrix_types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,18 @@ SparseArrays.SparseMatrixCSC(R::ARM) = SparseMatrixCSC(R.data)
# Documentation strings and dispatch to `recurrence_matrix`
################################################################################
"""
RecurrenceMatrix(x, ε; metric = Euclidean(), parallel::Bool)
RecurrenceMatrix(x, rthres; metric = Euclidean(), parallel::Bool)
Create a recurrence matrix from trajectory `x`
and with recurrence threshold specification `ε`.
Create a recurrence matrix from timeseries or trajectory `x`
and with recurrence threshold `rthres`.
`x` is either a [`StateSpaceSet`](@ref) for multivariate data
or an `AbstractVector{<:Real}` for timeseries.
If `ε::Real` is given, a [`RecurrenceThreshold`](@ref) is used to specify recurrences.
Otherwise, any subtype of [`AbstractRecurrenceType`](@ref) may be given as `ε` instead.
The variable `rthres` defines how recurrences are estimated.
It can be any subtype of [`AbstractRecurrenceType`](@ref),
and different types can specify recurrences differently.
Alternatively, `rthres` can be a real number, which then becomes
an instance of [`RecurrenceThreshold`](@ref).
The keyword `metric`, if given, must be any subtype of `Metric` from
[Distances.jl](https://github.com/JuliaStats/Distances.jl)
Expand Down Expand Up @@ -166,16 +169,16 @@ end


"""
CrossRecurrenceMatrix(x, y, ε; kwargs...)
CrossRecurrenceMatrix(x, y, rthres; kwargs...)
Create a cross recurrence matrix from trajectories `x` and `y`.
See [`RecurrenceMatrix`](@ref) for possible value for `ε` and `kwargs`.
See [`RecurrenceMatrix`](@ref) for possible value for `rthres` and `kwargs`.
The cross recurrence matrix is a bivariate extension of the recurrence matrix.
For the time series `x`, `y`, of length `n` and `m`, respectively, it is a
sparse `n×m` matrix of Boolean values.
Note that cross recurrence matrices are generally not symmetric irrespectively of `ε`.
Note that cross recurrence matrices are generally not symmetric irrespectively of `rthres`.
"""
function CrossRecurrenceMatrix(x, y, ε;
# DEPRECATED keywords. TODO: Remove them in next stable release.
Expand Down Expand Up @@ -203,10 +206,10 @@ function CrossRecurrenceMatrix(x, y, ε;
end

"""
JointRecurrenceMatrix(x, y, ε; kwargs...)
JointRecurrenceMatrix(x, y, rthres; kwargs...)
Create a joint recurrence matrix from trajectories `x` and `y`.
See [`RecurrenceMatrix`](@ref) for possible values for `ε` and `kwargs`.
See [`RecurrenceMatrix`](@ref) for possible values for `rthres` and `kwargs`.
The joint recurrence matrix considers the recurrences of the trajectories
of `x` and `y` separately, and looks for points where both recur
Expand Down
273 changes: 0 additions & 273 deletions src/rqa/windowed.jl

This file was deleted.

0 comments on commit 64229ed

Please sign in to comment.