Skip to content

Commit 816164b

Browse files
Merge pull request #894 from neo4j/harmonic-estimates-rst
harmonic estimaton endpoints
2 parents 8689c70 + ab0e500 commit 816164b

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

doc/sphinx/algorithms.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1534,6 +1534,14 @@
15341534
},
15351535
"description": "Harmonic centrality is a way of detecting nodes that are able to spread information\nvery efficiently through a graph."
15361536
},
1537+
{
1538+
"function": {
1539+
"name": "gds.closeness.harmonic.mutate.estimate",
1540+
"signature": "G: Graph, **config: Any",
1541+
"return_type": "Series[Any]"
1542+
},
1543+
"description": "Returns an estimation of the memory consumption for that procedure."
1544+
},
15371545
{
15381546
"function": {
15391547
"name": "gds.closeness.harmonic.stats",
@@ -1542,6 +1550,14 @@
15421550
},
15431551
"description": "Harmonic centrality is a way of detecting nodes that are able to spread information\nvery efficiently through a graph."
15441552
},
1553+
{
1554+
"function": {
1555+
"name": "gds.closeness.harmonic.stats.estimate",
1556+
"signature": "G: Graph, **config: Any",
1557+
"return_type": "Series[Any]"
1558+
},
1559+
"description": "Returns an estimation of the memory consumption for that procedure."
1560+
},
15451561
{
15461562
"function": {
15471563
"name": "gds.closeness.harmonic.stream",
@@ -1550,6 +1566,14 @@
15501566
},
15511567
"description": "Harmonic centrality is a way of detecting nodes that are able to spread information\nvery efficiently through a graph."
15521568
},
1569+
{
1570+
"function": {
1571+
"name": "gds.closeness.harmonic.stream.estimate",
1572+
"signature": "G: Graph, **config: Any",
1573+
"return_type": "Series[Any]"
1574+
},
1575+
"description": "Returns an estimation of the memory consumption for that procedure."
1576+
},
15531577
{
15541578
"function": {
15551579
"name": "gds.closeness.harmonic.write",
@@ -1558,6 +1582,14 @@
15581582
},
15591583
"description": "Harmonic centrality is a way of detecting nodes that are able to spread information\nvery efficiently through a graph."
15601584
},
1585+
{
1586+
"function": {
1587+
"name": "gds.closeness.harmonic.write.estimate",
1588+
"signature": "G: Graph, **config: Any",
1589+
"return_type": "Series[Any]"
1590+
},
1591+
"description": "Returns an estimation of the memory consumption for that procedure."
1592+
},
15611593
{
15621594
"function": {
15631595
"name": "gds.collapsePath.mutate",

doc/sphinx/source/algorithms.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -873,21 +873,37 @@ These all assume that an object of :class:`.GraphDataScience` is available as `g
873873
Harmonic centrality is a way of detecting nodes that are able to spread information
874874
very efficiently through a graph.
875875

876+
.. py:function:: gds.closeness.harmonic.mutate.estimate(G: Graph, **config: Any) -> Series[Any]
877+
878+
Returns an estimation of the memory consumption for that procedure.
879+
876880
.. py:function:: gds.closeness.harmonic.stats(G: Graph, **config: Any) -> DataFrame
877881
878882
Harmonic centrality is a way of detecting nodes that are able to spread information
879883
very efficiently through a graph.
880884

885+
.. py:function:: gds.closeness.harmonic.stats.estimate(G: Graph, **config: Any) -> Series[Any]
886+
887+
Returns an estimation of the memory consumption for that procedure.
888+
881889
.. py:function:: gds.closeness.harmonic.stream(G: Graph, **config: Any) -> DataFrame
882890
883891
Harmonic centrality is a way of detecting nodes that are able to spread information
884892
very efficiently through a graph.
885893

894+
.. py:function:: gds.closeness.harmonic.stream.estimate(G: Graph, **config: Any) -> Series[Any]
895+
896+
Returns an estimation of the memory consumption for that procedure.
897+
886898
.. py:function:: gds.closeness.harmonic.write(G: Graph, **config: Any) -> Series[Any]
887899
888900
Harmonic centrality is a way of detecting nodes that are able to spread information
889901
very efficiently through a graph.
890902

903+
.. py:function:: gds.closeness.harmonic.write.estimate(G: Graph, **config: Any) -> Series[Any]
904+
905+
Returns an estimation of the memory consumption for that procedure.
906+
891907
.. py:function:: gds.collapsePath.mutate(G: Graph, **config: Any) -> Series[Any]
892908
893909
Collapse Path algorithm is a traversal algorithm capable of creating relationships between the start

0 commit comments

Comments
 (0)