Basic Pipeline
A standard data pipeline contains loading data and applying transformations to convert it into a dataset. SuperAlign provides the following decorators to register these components of the pipeline @load_data is used to decorate a function that is used to load data into the code. It should return the loaded dataframe. @transformer is used to decorate any function that applies transformations on the data. It should return the loaded dataframe. @dataset is used to decorate the function that amalgamates all the steps in the data pipeline to generate the dataset. It should return the loaded dataframe. The following example demonstrates how to create a data pipeline using SuperAlign decorators that capture the lineage of the data transformationsExample
