Sequential#

class sdm.processing.common.Sequential(*args: object)#

Bases: EnsembleProcessor, EnsembleInvertibleMixin

Apply processors and callables to a table in sequence.

Parameters:

args (object) – Sequence of Processor instances or callables.

append(processor: object) → Self#

Append a processor or callable to this sequence.

Parameters:

processor (object) – The processor to append.

Return type:

Self

prepend(processor: object) → Self#

Prepend a processor or callable to this sequence.

Parameters:

processor (object) – The processor to prepend.

Return type:

Self

extend(processors: Iterable[object]) → Self#

Append multiple processors or callables to this sequence.

Parameters:

processors (Iterable[object]) – The processors to append.

Return type:

Self

Capabilities#

Handled Semantic Types

instance-specific

Requires Fitting

instance-specific