1. Cleaning Sensor Temperature Data
Data EngineerBackground
A dataset of temperature readings contains occasional sensor glitches resulting in impossible values like -500°C or 2000°C.
Problem
These extreme outliers skew the average temperature calculations and break downstream analysis.
How to use
Upload the CSV, set the min/max methods to 'absolute', define realistic bounds (e.g., -50 to 100), and select the 'clip' strategy.
minMethod: absolute, minValue: -50, maxMethod: absolute, maxValue: 100, handlingStrategy: clipOutcome
All temperature readings outside the -50 to 100 range are automatically capped at the boundary, resulting in a clean, usable dataset.