Remove Row
The Remove Row tool lets you delete a specific row from your dataset by providing its index. This is particularly useful for cleaning up bad data, removing duplicates, or excluding rows that are no longer relevant.
Key Features
- Row index selection – Enter the row number you want to remove.
- Removes entire row – All values across that row are deleted.
- Error-safe – Prevents removal if the row index is invalid or outside the dataset range.
- Instant cleanup – Useful for quickly discarding outliers or incorrect entries.
How to Use
- Open the Remove Row dialog.
- Enter the index of the row you want to delete (e.g.,
0 for the first row after the header). - Click Remove Row – the row will be removed from the dataset.
- Click Close to dismiss the dialog.
Example
Original dataset
ID | Name | Age
-- | ------ | ---
1 | Alice | 30
2 | Bob | 25
3 | Carol | 28
Row removed: 1 (Bob)
Resulting dataset
ID | Name | Age
-- | ------ | ---
1 | Alice | 30
3 | Carol | 28