1. Learn
  2. /
  3. Courses
  4. /
  5. ETL and ELT in Python

Connected

Exercise

Building an ETL Pipeline

Ready to ratchet up the fun? In this exercise, you'll be responsible for building the rest of the load() function before running each step in the ETL process. The extract() and transform() functions have been defined for you. Good luck!

Instructions

100 XP
  • Complete the load() function by writing the transformed_data DataFrame to a .csv file, using file_name.
  • Use the transform() function to clean the extracted_data DataFrame.
  • Load transformed_data to the transformed_data.csv file using the load() function.