From bcbd1fab6b7348fdaa64302a00468fa1823a7ea9 Mon Sep 17 00:00:00 2001 From: claudio1975 Date: Fri, 27 Sep 2024 16:35:44 +0200 Subject: [PATCH] I've changed the link of the plot --- sklearn/cluster/_dbscan.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sklearn/cluster/_dbscan.py b/sklearn/cluster/_dbscan.py index 12f9b74d0cdc3..903b6befaddb6 100644 --- a/sklearn/cluster/_dbscan.py +++ b/sklearn/cluster/_dbscan.py @@ -120,8 +120,7 @@ def dbscan( Notes ----- - For an example, see :ref:`examples/cluster/plot_dbscan.py - `. + For an example, see :ref:`sphx_glr_auto_examples_cluster_plot_dbscan.py`. This implementation bulk-computes all neighborhood queries, which increases the memory complexity to O(n.d) where d is the average number of neighbors,