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
calculate_variable_split line 151 variable_splits[variable] = np.unique(variable_column), np.unique does not like mixed datatype columns in python 3.7 suggested fix could be
calculate_variable_split line 151 variable_splits[variable] = np.unique(variable_column), np.unique does not like mixed datatype columns in python 3.7 suggested fix could be
variable_splits[variable] = np.unique(variable_column.astype(str))