> ## Documentation Index
> Fetch the complete documentation index at: https://parabola.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Cleaning data

<Frame>
  <iframe src="https://www.youtube.com/embed/wMlQY-vNWJI" title="Cleaning data" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen />
</Frame>

In this lesson, you'll learn the three main types of data cleanup — columns, rows, and values — and get prompting tips to get the best results when cleaning data in Parabola.

***

<Card icon="sparkles" title="Building challenge">
  Before combining your data sets, clean the uninvoiced shipments data so it can be matched to the rate card. Copy and paste this prompt into Parabola:

  ```text wrap theme={null}
  I want to clean my uninvoiced shipments data.

  First, remove the "Destination" column.

  Then, extract the numeric zone number from the "Zone" column (e.g., "Zone 7" → 7) and store it in a new column called "Zone Value".

  Finally, categorize "Weight (lbs)" into a new column called "Weight Range (lbs)" using these buckets: 1-5 lbs, 6-10 lbs, 11-20 lbs, 21-30 lbs, 31-50 lbs.
  ```
</Card>

<Accordion title="Check your work">
  <Note>The steps added to your canvas and their exact documentation may differ from what you see below — every AI response is unique. The important thing is that your resulting data set matches what you see here.</Note>

  <Frame>
    <img src="https://mintcdn.com/parabola-7119dfb0/qVX2afyBTA9i5QTy/images/finance-accounting-clean-canvas.png?fit=max&auto=format&n=qVX2afyBTA9i5QTy&q=85&s=c3ffb29a5f509f9ec0f3244b5e951069" alt="Clean data canvas view" width="3456" height="1912" data-path="images/finance-accounting-clean-canvas.png" />

    <img src="https://mintcdn.com/parabola-7119dfb0/qVX2afyBTA9i5QTy/images/finance-accounting-clean-data.png?fit=max&auto=format&n=qVX2afyBTA9i5QTy&q=85&s=d8ec4fa78eb65da28231630f7f3828d5" alt="Clean data step results" width="3456" height="1916" data-path="images/finance-accounting-clean-data.png" />
  </Frame>
</Accordion>
