From 3d9bbfe5f679c29f8e299b8c98d35ac674f5a886 Mon Sep 17 00:00:00 2001 From: Cloponaclock1 Date: Wed, 31 Jul 2024 22:52:11 -0600 Subject: [PATCH 1/2] Added ref to spectralcoclustering --- sklearn/cluster/_bicluster.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sklearn/cluster/_bicluster.py b/sklearn/cluster/_bicluster.py index 18d11e614509f..d8f3a5c6f58cd 100644 --- a/sklearn/cluster/_bicluster.py +++ b/sklearn/cluster/_bicluster.py @@ -316,6 +316,9 @@ class SpectralCoclustering(BaseSpectral): array([0, 0], dtype=int32) >>> clustering SpectralCoclustering(n_clusters=2, random_state=0) + + For a more detailed example, see + :ref:`sphx_glr_auto_examples_bicluster_plot_spectral_coclustering.py` """ _parameter_constraints: dict = { From 4e9b8ef65b4dd3c67bb75a687be92706a25299b8 Mon Sep 17 00:00:00 2001 From: Cloponaclock1 Date: Wed, 31 Jul 2024 22:57:44 -0600 Subject: [PATCH 2/2] Added ref to spectralcoclustering --- sklearn/cluster/_bicluster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklearn/cluster/_bicluster.py b/sklearn/cluster/_bicluster.py index d8f3a5c6f58cd..1437b97521ae4 100644 --- a/sklearn/cluster/_bicluster.py +++ b/sklearn/cluster/_bicluster.py @@ -316,7 +316,7 @@ class SpectralCoclustering(BaseSpectral): array([0, 0], dtype=int32) >>> clustering SpectralCoclustering(n_clusters=2, random_state=0) - + For a more detailed example, see :ref:`sphx_glr_auto_examples_bicluster_plot_spectral_coclustering.py` """