Pipelines
General Info
Useful Snippets

1.0.3 Use a fitted pipeline to transform a new dataset

Example:

# Use the pipeline that was fit on the training data to transform the new data:
DF_transformed_new_data = full_pipeline.transform(DF_new)