fix: fixes a bug in DBSCAN, removes println's

This commit is contained in:
Volodymyr Orlov
2021-01-02 18:08:40 -08:00
parent c5a7beaf0e
commit bb9a05b993
3 changed files with 48 additions and 23 deletions
+2 -1
View File
@@ -34,7 +34,8 @@
//! &[5.2, 2.7, 3.9, 1.4],
//! ]);
//!
//! let svd = SVD::fit(&iris, SVDParameters::default().with_n_components(2)).unwrap(); // Reduce number of features to 2
//! let svd = SVD::fit(&iris, SVDParameters::default().
//! with_n_components(2)).unwrap(); // Reduce number of features to 2
//!
//! let iris_reduced = svd.transform(&iris).unwrap();
//!