Open jitingxu1 opened 3 months ago
Add a Select step, opposite to Drop step.
Select
Drop
Use it as column filters in the last-mile preprocessing.
import ibis_ml as ml recipe = ml.Recipe( # to be added ml.Select(ml.numeric()), ml.ImputeMean(ml.numeric()), )
Any thought?
Sure, makes sense if we have Drop().
Drop()
Add a
Select
step, opposite toDrop
step.Use it as column filters in the last-mile preprocessing.
Any thought?