Transformer
A type of Callable that transforms existing data in its target DataFrame.
Definition
Constructor
- class controller.callable.transformer.Transformer(self, id: str, params: CallableParameters)
An abstract subclass of Callable where its implementations are Callables that transforms existing data in its target DataFrame.
- Parameters:
id (str) – The unique identifier of this Callable. Also referred to as
callable_idin documentations for specific Callables.params (CallableParameters) – The parameters of this Callable. Refer to the documentation for a specific Callable for details.
Methods
Usage
A concrete implementation of a Callable may inherit this class and override its check_params() and exec() methods.
Output conventions
Refer to Callable for conventions on all Callable outputs.
There are no further restrictions on the column names of a Transformer’s output DataFrame.