You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for recurrence networks based on LightGraphs (#112)
* add SimpleGraph and SimpleDiGraph
* add Matrix constructores
* interface for SimpleGraphs from RP
* remove option to keep diagonal in SimpleGraph
* Revert "remove option to keep diagonal in SimpleGraph"
This reverts commit d365ec1.
* fix calculation of SimpleGraph
* rna function, do not export LightGraph names
* v1.5
* add LightGraphs in tests
* fix diameter
Copy file name to clipboardExpand all lines: test/deprecations.jl
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,4 +21,6 @@ v = Dataset(rand(10, 2))
21
21
@test_logs (:warn, "`JointRecurrenceMatrix{WithinRange}(x::AbstractMatrix, y, ε; kwargs...)` is deprecated, use `JointRecurrenceMatrix{WithinRange}(Dataset(x), y, ε; kwargs...)`") JointRecurrenceMatrix(xm, v, 0.5)
22
22
@test_logs (:warn, "`JointRecurrenceMatrix{WithinRange}(x, y::AbstractMatrix, ε; kwargs...)` is deprecated, use `JointRecurrenceMatrix{WithinRange}(x, Dataset(y), ε; kwargs...)`") JointRecurrenceMatrix(v, ym, 0.5)
23
23
@test_logs (:warn, "`JointRecurrenceMatrix{WithinRange}(x::AbstractMatrix, y::AbstractMatrix, ε; kwargs...)` is deprecated, use `JointRecurrenceMatrix{WithinRange}(Dataset(x), Dataset(y), ε; kwargs...)`") JointRecurrenceMatrix(xm, ym, 0.5)
24
+
# transitivity
25
+
@test_logs (:warn, "`transitivity(x::AbstractRecurrenceMatrix)` is deprecated`, use `rna` to analyse network parameters") transitivity(R)
0 commit comments