This project is for the Data workshop! You'll get to experience transforming some data from one shape into another, and then we can discuss your solutions and how this might apply to future projects you take on.
First, make sure you have Node.js installed (specifically the version in the .node-version
is preferrable). We recommend using a Node.js runtime manager (like nodenv or NVM) to help you install the right version. Next, you'll run the following steps:
- Run
npm install
to install dependencies - Run
npm test
to check that all unit tests are passing!
We're going to practice some ETL (extract, transform, load). Here's what we need to accomplish:
- Turn
jeopardy.csv
intojeopardy.json
- Add an
id
key to the data, and make sure that each id is incrementing - Ensure each field is in snakecase
Air Date
->air_date
Happy coding!