Skip to content

Commit c43090c

Browse files
authored
Merge pull request #840 from vnickolov/hdbscan-mutate+write
Add HDBScan mutate and write
2 parents 25fa8d9 + 270c8e7 commit c43090c

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

doc/sphinx/algorithms.json

+32
Original file line numberDiff line numberDiff line change
@@ -1774,6 +1774,22 @@
17741774
},
17751775
"description": "Constructs a random subgraph based on random walks with restarts."
17761776
},
1777+
{
1778+
"function": {
1779+
"name": "gds.hdbscan.mutate",
1780+
"signature": "G: Graph, **config: Any",
1781+
"return_type": "Series[Any]"
1782+
},
1783+
"description": "Hierarchical Density-Based Spatial Clustering of Applications with Noise"
1784+
},
1785+
{
1786+
"function": {
1787+
"name": "gds.hdbscan.mutate.estimate",
1788+
"signature": "G: Graph, **config: Any",
1789+
"return_type": "Series[Any]"
1790+
},
1791+
"description": "Returns an estimation of the memory consumption for that procedure."
1792+
},
17771793
{
17781794
"function": {
17791795
"name": "gds.hdbscan.stats",
@@ -1806,6 +1822,22 @@
18061822
},
18071823
"description": "Returns an estimation of the memory consumption for that procedure."
18081824
},
1825+
{
1826+
"function": {
1827+
"name": "gds.hdbscan.write",
1828+
"signature": "G: Graph, **config: Any",
1829+
"return_type": "Series[Any]"
1830+
},
1831+
"description": "Hierarchical Density-Based Spatial Clustering of Applications with Noise"
1832+
},
1833+
{
1834+
"function": {
1835+
"name": "gds.hdbscan.write.estimate",
1836+
"signature": "G: Graph, **config: Any",
1837+
"return_type": "Series[Any]"
1838+
},
1839+
"description": "Returns an estimation of the memory consumption for that procedure."
1840+
},
18091841
{
18101842
"function": {
18111843
"name": "gds.hits.mutate",

doc/sphinx/source/algorithms.rst

+16
Original file line numberDiff line numberDiff line change
@@ -1004,6 +1004,14 @@ These all assume that an object of :class:`.GraphDataScience` is available as `g
10041004
10051005
Constructs a random subgraph based on random walks with restarts.
10061006

1007+
.. py:function:: gds.hdbscan.mutate(G: Graph, **config: Any) -> Series[Any]
1008+
1009+
Hierarchical Density-Based Spatial Clustering of Applications with Noise
1010+
1011+
.. py:function:: gds.hdbscan.mutate.estimate(G: Graph, **config: Any) -> Series[Any]
1012+
1013+
Returns an estimation of the memory consumption for that procedure.
1014+
10071015
.. py:function:: gds.hdbscan.stats(G: Graph, **config: Any) -> Series[Any]
10081016
10091017
Hierarchical Density-Based Spatial Clustering of Applications with Noise
@@ -1020,6 +1028,14 @@ These all assume that an object of :class:`.GraphDataScience` is available as `g
10201028
10211029
Returns an estimation of the memory consumption for that procedure.
10221030

1031+
.. py:function:: gds.hdbscan.write(G: Graph, **config: Any) -> Series[Any]
1032+
1033+
Hierarchical Density-Based Spatial Clustering of Applications with Noise
1034+
1035+
.. py:function:: gds.hdbscan.write.estimate(G: Graph, **config: Any) -> Series[Any]
1036+
1037+
Returns an estimation of the memory consumption for that procedure.
1038+
10231039
.. py:function:: gds.hits.mutate(G: Graph, **config: Any) -> Series[Any]
10241040
10251041
Hyperlink-Induced Topic Search (HITS) is a link analysis algorithm that rates nodes.

0 commit comments

Comments
 (0)