Skip to content

Commit

Permalink
Merge pull request scikit-learn#7447 from stvn66/stvn66-dbscan-docs-typo
Browse files Browse the repository at this point in the history
fix typo in DBSCAN explanation
  • Loading branch information
GaelVaroquaux authored Sep 17, 2016
2 parents f3baca6 + cb462b5 commit 466387e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/modules/clustering.rst
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ More formally, we define a core sample as being a sample in the dataset such
that there exist ``min_samples`` other samples within a distance of
``eps``, which are defined as *neighbors* of the core sample. This tells
us that the core sample is in a dense area of the vector space. A cluster
is a set of core samples, that can be built by recursively by taking a core
is a set of core samples that can be built by recursively taking a core
sample, finding all of its neighbors that are core samples, finding all of
*their* neighbors that are core samples, and so on. A cluster also has a
set of non-core samples, which are samples that are neighbors of a core sample
Expand Down

0 comments on commit 466387e

Please sign in to comment.