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
Pandas functions can now be directly applied onto the pyautoml objects if they have not been extended by pyautoml (i.e. describe, drop, etc.). This function will only be applied on the training dataset (or only dataset if only one is provided) and will return the result of the function without altering the state of the object.
You can now set both datasets to variables using the function to_df.
You can now standardize column names
Column names will all be lower case
Spaces will be replaced with underscores
Cleaning
Added function to remove columns with 1 unique value and all missing values
Added function to remove columns with all unique values (i.e. id columns)
Changed any remove function calls to drop to be more inline with Pandas