/.../_venvs/d3m/src/dsbox-datacleaning/dsbox/datapreprocessing/cleaner/encoder.py:283: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
col[col.notnull()] = col[col.notnull()].apply(chg_t)
You should be using .loc, for the left side, otherwise you might not update the data at all.
https://github.com/usc-isi-i2/dsbox-cleaning/blob/7b4336fe752cfcbaa06065651cacba32cf05ab15/dsbox/datapreprocessing/cleaner/encoder.py#L282-L283
You should be using
.loc
, for the left side, otherwise you might not update the data at all.