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
New cohort module, which contains the following new classes:
CohortManager: class that manages multiple cohort pipelines that are applied over each cohort separately using the fit(), transform(), fit_resample(), predict(), and predict_proba() interfaces;
New imputation approaches. The following classes were added into the dataprocessing.imputer module:
KNNDataImputer: class that imputes missing data of a feature using K-nearest neighbors;
IterativeDataImputer: class that imputes missing data of a feature using the other features. It uses a round-robin method
of modeling each feature with missing values to be imputed as a function of the other features.
New notebooks:
new tutorial notebooks showcasing the new classes
new case studies that showcases the benefits of using the CohortManager and DecoupledClass classes in real datasets.