1
1
[[migration-triangle-count]]
2
2
= Triangle Counting / Clustering Coefficient
3
3
4
- [abstract]
5
- --
6
- The `alpha` procedure group `gds.alpha.triangleCount` is being replaced by a pair of procedure groups:
4
+ The `alpha` procedures from the namespace `algo.triangleCount` are being replaced by a pair of procedure namespaces:
7
5
8
6
* <<algorithms-triangle-count, gds.triangleCount>>
9
7
* <<algorithms-local-clustering-coefficient, gds.localClusteringCoefficient>>
10
- --
8
+
9
+ Everything relating to clustering coefficients has been extracted into a separate algorithm backing `gds.localClusteringCoefficient` procedures.
10
+ To compute both triangle count and local clustering coefficient values multiple procedures will be necessary.
11
+
11
12
12
13
.Common changes in Configuration
13
14
[opts=header]
@@ -22,24 +23,10 @@ The `alpha` procedure group `gds.alpha.triangleCount` is being replaced by a pai
22
23
| `graph` | -
23
24
|===
24
25
25
- .Changes in Configuration of `gds .triangleCount`
26
+ .Changes in YIELD fields of `algo .triangleCount`
26
27
[opts=header]
27
28
|===
28
29
|Graph Algorithms v3.5 |Graph Data Science v1.2
29
- | - | `maxDegree`
30
- |===
31
-
32
- .Changes in Configuration of `gds.localClusteringCoefficient`
33
- [opts=header]
34
- |===
35
- |Graph Algorithms v3.5 |Graph Data Science v1.2
36
- | - | `triangleCountProperty`
37
- |===
38
-
39
- .Changes in YIELD fields of `gds.triangleCount`
40
- [opts=header]
41
- |===
42
- |Graph Algorithms v3.5 |Graph Data Science v1.0
43
30
| `nodeId` | `nodeId` footnote:triangle-count-stream-yield[Only for `stream` mode]
44
31
| `triangles` | `triangleCount` footnote:triangle-count-stream-yield[Only for `stream` mode]
45
32
| `triangleCount` | `globalTriangleCount` footnote:triangle-count-write-yield[Not present in `stream` mode]
@@ -55,21 +42,4 @@ The `alpha` procedure group `gds.alpha.triangleCount` is being replaced by a pai
55
42
| `min, max, mean, p50, p75, p90, p95, p99, p999` | -
56
43
|===
57
44
58
- .Changes in YIELD fields of `gds.localClusteringCoefficient`
59
- [opts=header]
60
- |===
61
- |Graph Algorithms v3.5 |Graph Data Science v1.0
62
- | `nodeId` | `nodeId` footnote:lcc-stream-yield[Only for `stream` mode]
63
- | `localClusteringCoefficient` | `triangleCount` footnote:lcc-stream-yield[Only for `stream` mode]
64
- | `nodeCount` | `nodeCount` footnote:lcc-write-yield[Not present in `stream` mode]
65
- | `averageClusteringCoefficient` | `averageClusteringCoefficient` footnote:lcc-write-yield[]
66
- | `loadMillis` | `createMillis`
67
- | `computeMillis` | `computeMillis`
68
- | `writeMillis` | `writeMillis`
69
- | `write` | -
70
- | - | `configuration` footnote:wcc-gds-config[The configuration used to run the algorithm]
71
- | `clusteringCoefficientProperty` footnote:lcc-config[Inlined as `writeProperty` into `configuration`] | -
72
- | `min, max, mean, p50, p75, p90, p95, p99, p999` | -
73
- |===
74
-
75
45
0 commit comments