Skip to content

Commit 9db1071

Browse files
Change order of counter keys in docstring
1 parent c2fc4da commit 9db1071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imblearn/over_sampling/_smote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ class SMOTEN(SMOTE):
12071207
>>> sm = SMOTEN(random_state=42)
12081208
>>> X_res, y_res = sm.fit_resample(X, y)
12091209
>>> print('Resampled dataset samples per class {}'.format(Counter(y_res)))
1210-
Resampled dataset samples per class Counter({0: 900, 1: 900})
1210+
Resampled dataset samples per class Counter({1: 900, 0: 900})
12111211
12121212
"""
12131213

0 commit comments

Comments
 (0)