ibis-ml
ibis-ml copied to clipboard
feat: add Select() step
Add a Select
step, opposite to Drop
step.
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?