Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 27d3899

Browse files
authored
DOC Add links to DBSCAN references. (#24758)
1 parent 0e4e418 commit 27d3899

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

doc/modules/clustering.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -936,13 +936,14 @@ by black points below.
936936

937937
.. topic:: References:
938938

939-
* "A Density-Based Algorithm for Discovering Clusters in Large Spatial Databases
940-
with Noise"
939+
* `"A Density-Based Algorithm for Discovering Clusters in Large Spatial Databases
940+
with Noise" <https://www.aaai.org/Papers/KDD/1996/KDD96-037.pdf>`_
941941
Ester, M., H. P. Kriegel, J. Sander, and X. Xu,
942942
In Proceedings of the 2nd International Conference on Knowledge Discovery
943943
and Data Mining, Portland, OR, AAAI Press, pp. 226–231. 1996
944944

945-
* "DBSCAN revisited, revisited: why and how you should (still) use DBSCAN.
945+
* :doi:`"DBSCAN revisited, revisited: why and how you should (still) use DBSCAN."
946+
<10.1145/3068335>`
946947
Schubert, E., Sander, J., Ester, M., Kriegel, H. P., & Xu, X. (2017).
947948
In ACM Transactions on Database Systems (TODS), 42(3), 19.
948949

@@ -2110,4 +2111,4 @@ diagonal entries::
21102111
.. topic:: References
21112112

21122113
* :doi:`"Comparing Partitions" <10.1007/BF01908075>`
2113-
L. Hubert and P. Arabie, Journal of Classification 1985
2114+
L. Hubert and P. Arabie, Journal of Classification 1985

sklearn/cluster/_dbscan.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,15 @@ def dbscan(
139139
140140
References
141141
----------
142-
Ester, M., H. P. Kriegel, J. Sander, and X. Xu, "A Density-Based
143-
Algorithm for Discovering Clusters in Large Spatial Databases with Noise".
142+
Ester, M., H. P. Kriegel, J. Sander, and X. Xu, `"A Density-Based
143+
Algorithm for Discovering Clusters in Large Spatial Databases with Noise"
144+
<https://www.aaai.org/Papers/KDD/1996/KDD96-037.pdf>`_.
144145
In: Proceedings of the 2nd International Conference on Knowledge Discovery
145146
and Data Mining, Portland, OR, AAAI Press, pp. 226-231. 1996
146147
147148
Schubert, E., Sander, J., Ester, M., Kriegel, H. P., & Xu, X. (2017).
148-
DBSCAN revisited, revisited: why and how you should (still) use DBSCAN.
149+
:doi:`"DBSCAN revisited, revisited: why and how you should (still) use DBSCAN."
150+
<10.1145/3068335>`
149151
ACM Transactions on Database Systems (TODS), 42(3), 19.
150152
"""
151153

@@ -277,13 +279,15 @@ class DBSCAN(ClusterMixin, BaseEstimator):
277279
278280
References
279281
----------
280-
Ester, M., H. P. Kriegel, J. Sander, and X. Xu, "A Density-Based
281-
Algorithm for Discovering Clusters in Large Spatial Databases with Noise".
282+
Ester, M., H. P. Kriegel, J. Sander, and X. Xu, `"A Density-Based
283+
Algorithm for Discovering Clusters in Large Spatial Databases with Noise"
284+
<https://www.aaai.org/Papers/KDD/1996/KDD96-037.pdf>`_.
282285
In: Proceedings of the 2nd International Conference on Knowledge Discovery
283286
and Data Mining, Portland, OR, AAAI Press, pp. 226-231. 1996
284287
285288
Schubert, E., Sander, J., Ester, M., Kriegel, H. P., & Xu, X. (2017).
286-
DBSCAN revisited, revisited: why and how you should (still) use DBSCAN.
289+
:doi:`"DBSCAN revisited, revisited: why and how you should (still) use DBSCAN."
290+
<10.1145/3068335>`
287291
ACM Transactions on Database Systems (TODS), 42(3), 19.
288292
289293
Examples

0 commit comments

Comments
 (0)