eltonlaw / impyute

Data imputations library to preprocess datasets with missing data

Home Page:http://impyute.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Data type checks

e3vela opened this issue · comments

Hi!

On this check, it makes sure the input data is of type np.float, but it fails when input data is np.float32 or np.float64.

return data.dtype == np.float

Would you rather cast to np.float32 by default?