We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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?
Status