Skip to content

Commit f0612f2

Browse files
committed
DOC fix docstring
1 parent bdd117d commit f0612f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imblearn/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class FunctionSampler(SamplerMixin):
7070
... kw_args={'ratio': 'auto', 'random_state': 0})
7171
>>> X_res, y_res = sampler.fit_sample(X, y)
7272
>>> print('Resampled dataset shape {}'.format(Counter(y_res)))
73-
Resampled dataset shape Counter({-1: 268, 1: 268})
73+
Resampled dataset shape Counter({1: 268, -1: 268})
7474
7575
"""
7676

0 commit comments

Comments
 (0)