Skip to main content

Pipeline

A Pipeline is a linear arrangement of sequentally executed Stages in which the output of one stage is piped as the input into the next stage. An input data source feeds records into the first stage of the pipeline. Each stage then sequentially performs a transformation of its input data (e.g., filters, aggregates, sorts) and sends its output data along to the next stage. The output of the final stage is returned to be used in a table or other visualization.

data source
Data Source
Brand Study.sav
Stage
Filter
Country=USA
Stage
Aggregate
Aware of Brand
Stage
Filter
n>50
Stage
Sort
by Awareness
Stage
Limit
Top 10 Brands
out
Visualization

See available Stages.