ibis-ml icon indicating copy to clipboard operation
ibis-ml copied to clipboard

feat: add Select() step

Open jitingxu1 opened this issue 6 months ago • 1 comments

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?

jitingxu1 avatar Aug 23 '24 22:08 jitingxu1