Skip to content

Commit 0cb5a32

Browse files
committed
Test a fix for #229
1 parent a7792c9 commit 0cb5a32

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

category_encoders/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ def convert_input(X, columns=None, deep=False):
6060
X = pd.DataFrame(X.todense(), columns=columns, copy=deep)
6161
else:
6262
raise ValueError('Unexpected input type: %s' % (str(type(X))))
63-
64-
X = X.apply(lambda x: pd.to_numeric(x, errors='ignore'))
6563
elif deep:
6664
X = X.copy(deep=True)
6765

0 commit comments

Comments
 (0)