Follow up issue on issue #70 and #82 , also mentioned in #101
Preprocessor transformers is only transforming X for now. Might cause problem if user's dataset only has univariate y without X exogenous variables and has missing values in y.
Possible solution:
Add argument y in fit() and fit_transform(), return X_new, y_new
Add argument y in fit() and fit_transform(), return df_new
run the current structured transformer on X and y separately
Follow up issue on issue #70 and #82 , also mentioned in #101 Preprocessor transformers is only transforming X for now. Might cause problem if user's dataset only has univariate y without X exogenous variables and has missing values in y.
Possible solution: