Learn R Programming

bdpar (version 2.0.0)

GenericPipeline: Absctract super class implementing the pipelining proccess.

Description

Abstract super class to establish the flow of Pipes.

Usage

GenericPipeline

Arguments

Constructor

GenericPipeline$new()

Methods

  • execute: function where is implemented the flow of the pipes.

    • Usage: execute(instance)

    • Value: the preprocessed Instance.

    • Arguments:

      • instance: (Instance) the Instance that is going to be processed.

  • get: gets a list with containinig the set of pipes of the pipeline,

    • Usage: get()

    • Value: the set of pipes containing the pipeline.

See Also

DefaultPipeline, DynamicPipeline, Instance, GenericPipe, %>|%