Skip to content

Commit e0c8d35

Browse files
committed
docstring fix: 2 more example samples removed by new (fixed) rule
1 parent 2f52a38 commit e0c8d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imblearn/under_sampling/neighbourhood_cleaning_rule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class NeighbourhoodCleaningRule(BaseMulticlassSampler):
7777
>>> ncr = NeighbourhoodCleaningRule(random_state=42)
7878
>>> X_res, y_res = ncr.fit_sample(X, y)
7979
>>> print('Resampled dataset shape {}'.format(Counter(y_res)))
80-
Resampled dataset shape Counter({1: 891, 0: 100})
80+
Resampled dataset shape Counter({1: 889, 0: 100})
8181
8282
References
8383
----------

0 commit comments

Comments
 (0)