You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
np.float you are using in impute function is deprecated (line 404 in great.py file). You have to change to float or to np.float64:
Current:
df_curr[self.num_cols] = df_curr[self.num_cols].astype(np.float)
Change:
df_curr[self.num_cols] = df_curr[self.num_cols].astype(float)
or
df_curr[self.num_cols] = df_curr[self.num_cols].astype(np.float64)
The text was updated successfully, but these errors were encountered:
np.float you are using in impute function is deprecated (line 404 in great.py file). You have to change to float or to np.float64:
Current:
df_curr[self.num_cols] = df_curr[self.num_cols].astype(np.float)
Change:
df_curr[self.num_cols] = df_curr[self.num_cols].astype(float)
or
df_curr[self.num_cols] = df_curr[self.num_cols].astype(np.float64)
The text was updated successfully, but these errors were encountered: