File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,9 @@ class DBSCAN(ClusterMixin, BaseEstimator):
172
172
Finds core samples of high density and expands clusters from them.
173
173
Good for data which contains clusters of similar density.
174
174
175
+ The worst case memory complexity of DBSCAN is :math:`O({n}^2)`, which can
176
+ occur when the `eps` param is large and `min_samples` is low.
177
+
175
178
Read more in the :ref:`User Guide <dbscan>`.
176
179
177
180
Parameters
@@ -184,8 +187,11 @@ class DBSCAN(ClusterMixin, BaseEstimator):
184
187
and distance function.
185
188
186
189
min_samples : int, default=5
187
- The number of samples (or total weight) in a neighborhood for a point
188
- to be considered as a core point. This includes the point itself.
190
+ The number of samples (or total weight) in a neighborhood for a point to
191
+ be considered as a core point. This includes the point itself. If
192
+ `min_samples` is set to a higher value, DBSCAN will find denser clusters,
193
+ whereas if it is set to a lower value, the found clusters will be more
194
+ sparse.
189
195
190
196
metric : str, or callable, default='euclidean'
191
197
The metric to use when calculating distance between instances in a
You can’t perform that action at this time.
0 commit comments