-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Labels
releasedIncluded in a releaseIncluded in a release
Description
Is your feature request related to a problem?
Currently, users can transform a table either with a TableTransformer or with the methods of Table. However, only a TableTransformer can be used in a SequentialTableTransformer (see #802).
Desired solution
- Add a new class
FunctionalTableTransformer - Superclass:
TableTransformer - Constructor parameters:
transformer: Callable[[Table], Table]The function transforms a table and returns the transformed table.
is_fitted: AlwaysTrue, immediately after constructing the model.fit: Is a no-OP. Just returnself.transform: Call thetransformeryou got in the constructor and return the result.
Possible alternatives (optional)
No response
Screenshots (optional)
No response
Additional Context (optional)
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
releasedIncluded in a releaseIncluded in a release
Type
Projects
Status
✔️ Done