@@ -92,7 +92,7 @@ class EditedNearestNeighbours(BaseCleaningSampler):
92
92
>>> from collections import Counter
93
93
>>> from sklearn.datasets import make_classification
94
94
>>> from imblearn.under_sampling import \
95
- EditedNearestNeighbours # doctest: +NORMALIZE_WHITESPACE
95
+ EditedNearestNeighbours # doctest: +NORMALIZE_WHITESPACE
96
96
>>> X, y = make_classification(n_classes=2, class_sep=2,
97
97
... weights=[0.1, 0.9], n_informative=3, n_redundant=1, flip_y=0,
98
98
... n_features=20, n_clusters_per_class=1, n_samples=1000, random_state=10)
@@ -282,7 +282,7 @@ class RepeatedEditedNearestNeighbours(BaseCleaningSampler):
282
282
>>> from collections import Counter
283
283
>>> from sklearn.datasets import make_classification
284
284
>>> from imblearn.under_sampling import \
285
- RepeatedEditedNearestNeighbours # doctest : +NORMALIZE_WHITESPACE
285
+ RepeatedEditedNearestNeighbours # doctest : +NORMALIZE_WHITESPACE
286
286
>>> X, y = make_classification(n_classes=2, class_sep=2,
287
287
... weights=[0.1, 0.9], n_informative=3, n_redundant=1, flip_y=0,
288
288
... n_features=20, n_clusters_per_class=1, n_samples=1000, random_state=10)
0 commit comments