Transform the data
Hooray, now you're finally ready to pass your data through the Pipeline you created!
This exercise is part of the course
Foundations of PySpark
Exercise instructions
- Create the DataFrame
piped_databy calling thePipelinemethods.fit()and.transform()in a chain. Both of these methods takemodel_dataas their only argument.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Fit and transform the data
piped_data = flights_pipe.____.____