Skip to content

Commit 4988fd5

Browse files
authored
fix references and NEWS.md (#113)
1 parent df0a9a9 commit 4988fd5

File tree

6 files changed

+37
-13
lines changed

6 files changed

+37
-13
lines changed

NEWS.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# RecurrenceAnalysis.jl News
22

3+
## v1.5.1
4+
- Minor documentation fixes.
5+
6+
## v1.5.0
7+
- Integration with `LightGraphs` to create recurrence networks, and `rna` function.
8+
9+
## v1.4.0
10+
- New method of Fixed Amount of Neighbors (FAN) method to create recurrence plots.
11+
- Now `AbstractRecurrenceMatrix` types have a parameter with the possible values:
12+
* `WithinRange`: when neighboring points are determined by a given distance in the phase space.
13+
* `NeighborNumber`: when each point has a determined number of neighbors.
14+
- Input arguments of `RecurrenceMatrix`, etc. are generalized to `AbstractDataset`.
15+
16+
## v1.3.2
17+
- Bugfixes of `transitivity`
18+
- Deprecate `AbstractMatrix` inputs to `RecurrenceMatrix` etc., in favor of `Dataset`.
19+
320
## v1.3.0
421
- Increased performance of `RecurrenceMatrix`.
522
- Possible to make `JointRecurrenceMatrix` from input arguments.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "RecurrenceAnalysis"
22
uuid = "639c3291-70d9-5ea2-8c5b-839eba1ee399"
33
repo = "https://github.com/JuliaDynamics/RecurrenceAnalysis.jl.git"
4-
version = "1.5.0"
4+
version = "1.5.1"
55

66
[deps]
77
DelayEmbeddings = "5732040d-69e3-5649-938a-b6b4f237613f"

src/graphs.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ for Recurrence Network Analysis provided in this package.
2626
2727
[1] : R.V. Donner *et al.* "Recurrence networks — a novel paradigm for nonlinear time series analysis",
2828
*New Journal of Physics* 12, 033025 (2010).
29+
[DOI:10.1088/1367-2630/12/3/033025](https://doi.org/10.1088/1367-2630/12/3/033025)
2930
3031
[2] : R.V. Donner *et al.* "Complex Network Analysis of Recurrences", in:
3132
Webber, C.L. & Marwan N. (eds.) *Recurrence Quantification Analysis.

src/matrices.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Objects of type `<:AbstractRecurrenceMatrix` are displayed as a [`recurrenceplot
7676
7777
## Description
7878
79-
The recurrence matrix is a numeric representation of a "recurrence plot" [^1, ^2],
79+
The recurrence matrix is a numeric representation of a "recurrence plot" [1, 2],
8080
in the form of a sparse square matrix of Boolean values.
8181
8282
`x` must be a `Vector` or an `AbstractDataset`
@@ -121,10 +121,11 @@ See also: [`CrossRecurrenceMatrix`](@ref), [`JointRecurrenceMatrix`](@ref) and
121121
use [`recurrenceplot`](@ref) to turn the result of these functions into a plottable format.
122122
123123
## References
124-
[^1] : N. Marwan *et al.*, "Recurrence plots for the analysis of complex systems",
124+
[1] : N. Marwan *et al.*, "Recurrence plots for the analysis of complex systems",
125125
*Phys. Reports 438*(5-6), 237-329 (2007).
126+
[DOI:10.1016/j.physrep.2006.11.001](https://doi.org/10.1016/j.physrep.2006.11.001)
126127
127-
[^2] : N. Marwan & C.L. Webber, "Mathematical and computational foundations of
128+
[2] : N. Marwan & C.L. Webber, "Mathematical and computational foundations of
128129
recurrence quantifications", in: Webber, C.L. & N. Marwan (eds.), *Recurrence
129130
Quantification Analysis. Theory and Best Practices*, Springer, pp. 3-43 (2015).
130131
"""

src/rna.jl

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ valid inputs to the `SimpleGraph` constructor of the
1414
## Return
1515
1616
The returned value is a dictionary that contains the following entries,
17-
with the corresponding global network properties[^1][^2]:
17+
with the corresponding global network properties[1, 2]:
1818
* `:density`: edge density, approximately equivalent to the global recurrence rate in the phase space.
1919
* `:transitivity`: network transitivity, which describes the
20-
global clustering of points following Barrat's and Weigt's formulation [^3].
20+
global clustering of points following Barrat's and Weigt's formulation [3].
2121
* `:averagepath`: mean value of the shortest path lengths taken over
2222
all pairs of connected vertices, related to the average separation
2323
between points in the phase.
@@ -26,14 +26,17 @@ pairs of connected vertices, related to the phase space diameter.
2626
2727
## References
2828
29-
[^1]: R.V. Donner *et al.* ["Recurrence networks — a novel paradigm for nonlinear time series analysis",
30-
*New Journal of Physics* 12, 033025 (2010)](https://doi.org/10.1088/1367-2630/12/3/033025)
29+
[1]: R.V. Donner *et al.* "Recurrence networks — a novel paradigm for nonlinear time series analysis",
30+
*New Journal of Physics* 12, 033025 (2010)
31+
[DOI:10.1088/1367-2630/12/3/033025](https://doi.org/10.1088/1367-2630/12/3/033025)
3132
32-
[^2]: R.V. Donner *et al.*, [The geometry of chaotic dynamics — a complex network perspective,
33-
*Eur. Phys. J.* B 84, 653–672 (2011)](https://doi.org/10.1140/epjb/e2011-10899-1)
33+
[2]: R.V. Donner *et al.*, The geometry of chaotic dynamics — a complex network perspective,
34+
*Eur. Phys. J.* B 84, 653–672 (2011)
35+
[DOI:10.1140/epjb/e2011-10899-1](https://doi.org/10.1140/epjb/e2011-10899-1)
3436
35-
[^3]: A. Barrat & M. Weight, ["On the properties of small-world network models",
36-
*The European Physical Journal B* 13, 547–560 (2000)](https://doi.org/10.1007/s100510050067)
37+
[3]: A. Barrat & M. Weight, "On the properties of small-world network models",
38+
*The European Physical Journal B* 13, 547–560 (2000)
39+
[DOI:10.1007/s100510050067](https://doi.org/10.1007/s100510050067)
3740
"""
3841
function rna(args...; kwargs...)
3942
graph = SimpleGraph(args...; kwargs...)

src/rqa.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ explicitly exclude the LOI or other diagonals around it.
4141
4242
[1] : N. Marwan *et al.*, "Recurrence plots for the analysis of complex systems",
4343
*Phys. Reports 438*(5-6), 237-329 (2007).
44+
[DOI:10.1016/j.physrep.2006.11.001](https://doi.org/10.1016/j.physrep.2006.11.001)
4445
4546
[2] : C.L. Webber & J.P. Zbilut, "Recurrence Quantification Analysis of Nonlinear
4647
Dynamical Systems", in: Riley MA & Van Orden GC, Tutorials in Contemporary
@@ -344,7 +345,8 @@ of recurrence times [1].
344345
## References
345346
346347
[1] : E.J. Ngamga *et al.* "Recurrence analysis of strange nonchaotic dynamics",
347-
*Physical Review E*, 75(3), 036222(1-8), 2007, DOI:10.1103/physreve.75.036222
348+
*Physical Review E*, 75(3), 036222(1-8) (2007)
349+
[DOI:10.1103/physreve.75.036222](https://doi.org/10.1103/physreve.75.036222)
348350
349351
"""
350352
nmprt(R::ARM; kwargs) = maximum(verticalhistograms(R; kwargs...)[2])

0 commit comments

Comments
 (0)