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

Connected

Exercise

ELT in Action

Feeling pretty good about running ETL processes? Well, it's time to give ELT pipelines a try. Like before, the extract(), load(), and transform() functions have been defined for you; all you'll have to worry about is running these functions. Good luck!

Instructions

100 XP
  • Use the appropriate ETL function to extract data from the raw_data.csv file.
  • Load the raw_data DataFrame into the raw_data table in a data warehouse.
  • Call the transform() function to transform the data in the raw_data source table.