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
Copy file name to clipboardExpand all lines: docs/src/api/cross_map_api.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ Let's reproduce figure 3A too, focusing only on [`ConvergentCrossMapping`](@ref)
40
40
For this example, they use a bidirectional system with asymmetrical coupling strength.
41
41
42
42
```@example MAIN_CCM
43
-
using CausalityTools
43
+
using Associations
44
44
using Statistics
45
45
using LabelledArrays
46
46
using StaticArrays
@@ -201,7 +201,7 @@ slightly different embedding.
201
201
202
202
203
203
```@example MAIN_CCM
204
-
using CausalityTools
204
+
using Associations
205
205
using Statistics
206
206
using LabelledArrays
207
207
using StaticArrays
@@ -267,7 +267,7 @@ variables ``X`` and ``Y``, where ``X`` drives ``Y``.
267
267
After we have computed the PAI in both directions, we define a measure of directionality as the difference between PAI in the ``X \to Y`` direction and in the ``Y \to X`` direction, so that if ``X`` drives ``Y``, then ``\Delta < 0``.
Copy file name to clipboardExpand all lines: docs/src/api/discretization_counts_probs_api.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ When discretizing, what happens is that we "encode" input data into an intermedi
12
12
- Once a dataset has been encoded into integers, we can estimate [`Counts`](@ref) or [`Probabilities`](@ref) ([tutorial](@ref tutorial_probabilities)).
13
13
- Once probabilities have been estimated, one can use these to estimate [`MultivariateInformationMeasure`](@ref) ([tutorial](@ref tutorial_infomeasures)).
14
14
15
-
The following functions and types are used by CausalityTools.jl to perform discretization of input data.
15
+
The following functions and types are used by Associations.jl to perform discretization of input data.
16
16
17
17
```@docs
18
18
Discretization
@@ -21,7 +21,7 @@ CodifyPoints
21
21
codify
22
22
```
23
23
24
-
In summary, the two main ways of discretizing data in CausalityTools are as follows.
24
+
In summary, the two main ways of discretizing data in Associations are as follows.
25
25
26
26
- The [`CodifyPoints`](@ref) discretization scheme encodes input data on a point-by-point
27
27
basis by applying some [`Encoding`](@ref) to each point.
@@ -66,7 +66,7 @@ We'll here use the [`OrdinalPatternEncoding`](@ref) with differing parameter `m`
66
66
multiple [`StateSpaceSet`](@ref) of differing dimensions.
67
67
68
68
```@example example_encode_points
69
-
using CausalityTools
69
+
using Associations
70
70
using StateSpaceSets
71
71
using Random; rng = Xoshiro(1234)
72
72
@@ -128,7 +128,7 @@ Some [`OutcomeSpace`](@ref)s dictate a sliding window which has the width of one
128
128
when used with [`CodifyVariables`](@ref). [`ValueBinning`](@ref) is such an outcome space.
129
129
130
130
```@example example_encode_vars
131
-
using CausalityTools
131
+
using Associations
132
132
using Random; rng = Xoshiro(1234)
133
133
134
134
x = rand(rng, 100)
@@ -150,7 +150,7 @@ end of each input variable are lost. For example, with [`OrdinalPatterns`](@ref)
150
150
of encoded points decrease with the embedding parameter `m`.
151
151
152
152
```@example example_encode_vars
153
-
using CausalityTools
153
+
using Associations
154
154
using Random; rng = Xoshiro(1234)
155
155
156
156
x = rand(rng, 100)
@@ -163,7 +163,7 @@ the same outcome space, as long as the operation will result in the *same* numbe
0 commit comments