Pipeline constructor

Pipeline(
  1. DataFrame fittingData,
  2. Iterable<PipeableOperatorFn> operators, {
  3. DType dType,
})

Takes fittingData to fit preprocessors from operators list in order to use them further for new data of the same source as fittingData via process method.

Implementation

factory Pipeline(
    DataFrame fittingData, Iterable<PipeableOperatorFn> operators,
    {DType dType}) = PipelineImpl;