@@ -71,9 +71,9 @@ def mutate(
7171 upper_degree_cutoff : int, default=2147483647
7272 The maximum degree a node can have to be considered.
7373 similarity_metric : str, default="JACCARD"
74- The similarity metric to use for computation.
74+ The similarity metric to use for computation. JACCARD, OVERLAP or COSINE.
7575 use_components : bool | str, default=False
76- Whether to compute similarity within connected components.
76+ Whether to compute similarity within connected components. Given a string uses the node property stored in the graph
7777 relationship_weight_property : str | None, default=None
7878 The relationship property to use as weights.
7979 relationship_types : list[str] | None, default=None
@@ -147,9 +147,9 @@ def stats(
147147 upper_degree_cutoff : int, default=2147483647
148148 The maximum degree a node can have to be considered.
149149 similarity_metric : str, default="JACCARD"
150- The similarity metric to use for computation.
150+ The similarity metric to use for computation. JACCARD, OVERLAP or COSINE.
151151 use_components : bool | str, default=False
152- Whether to compute similarity within connected components.
152+ Whether to compute similarity within connected components. Given a string uses the node property stored in the graph
153153 relationship_weight_property : str | None, default=None
154154 The relationship property to use as weights.
155155 relationship_types : list[str] | None, default=None
@@ -223,9 +223,9 @@ def stream(
223223 upper_degree_cutoff : int, default=2147483647
224224 The maximum degree a node can have to be considered.
225225 similarity_metric : str, default="JACCARD"
226- The similarity metric to use for computation.
226+ The similarity metric to use for computation. JACCARD, OVERLAP or COSINE.
227227 use_components : bool | str, default=False
228- Whether to compute similarity within connected components.
228+ Whether to compute similarity within connected components. Given a string uses the node property stored in the graph
229229 relationship_weight_property : str | None, default=None
230230 The relationship property to use as weights.
231231 relationship_types : list[str] | None, default=None
@@ -306,9 +306,9 @@ def write(
306306 upper_degree_cutoff : int, default=2147483647
307307 The maximum degree a node can have to be considered.
308308 similarity_metric : str, default="JACCARD"
309- The similarity metric to use for computation.
309+ The similarity metric to use for computation. JACCARD, OVERLAP or COSINE.
310310 use_components : bool | str, default=False
311- Whether to compute similarity within connected components.
311+ Whether to compute similarity within connected components. Given a string uses the node property stored in the graph
312312 relationship_weight_property : str | None, default=None
313313 The relationship property to use as weights.
314314 relationship_types : list[str] | None, default=None
@@ -382,9 +382,9 @@ def estimate(
382382 upper_degree_cutoff : int, default=2147483647
383383 The maximum degree a node can have to be considered.
384384 similarity_metric : str, default="JACCARD"
385- The similarity metric to use for computation.
385+ The similarity metric to use for computation. JACCARD, OVERLAP or COSINE.
386386 use_components : bool | str, default=False
387- Whether to compute similarity within connected components.
387+ Whether to compute similarity within connected components. Given a string uses the node property stored in the graph
388388 relationship_weight_property : str | None, default=None
389389 The relationship property to use as weights.
390390 relationship_types : list[str] | None, default=None
0 commit comments