Concept Flow
Raw Data with Summary Rows --> Data Interpreter --> Clean Data without Summary Rows
The Data Interpreter scans the raw data to find and remove summary rows and extra headers, producing clean data ready for analysis.
Raw Data with Summary Rows --> Data Interpreter --> Clean Data without Summary Rows
Data Interpreter detects rows with text like 'Total Sales' and removes them from the dataset.This process helps remove unwanted summary rows that can interfere with accurate data analysis.
| Row | Column A (Date) | Column B (Sales) | Column C (Region) | Action |
|---|---|---|---|---|
| 1 | Date | Sales | Region | Header - Keep |
| 2 | 2024-01-01 | 1000 | North | Keep |
| 3 | 2024-01-02 | 1200 | North | Keep |
| 4 | Total Sales | 2200 | Remove - Summary Row |
| Variable | Value | Description |
|---|---|---|
| SummaryRowFound | True | Detected 'Total Sales' in row 4 |
| RowsRemoved | 1 | One summary row removed |
| CleanDataRows | 3 | Rows remaining after cleaning |