📏 Range Calculator
Determine the spread of your dataset at a glance. Paste numbers to instantly view the minimum, maximum, range, midrange, and trimmed range (excluding outliers).
Dataset Input
Accepts comma, space, newline, or tab separated values
Tip: paste directly from spreadsheets. Non-numeric entries are flagged.
Minimum
—
Maximum
—
Range (Max − Min)
—
Midrange
—
Trimmed Range (5%)
—
Removes top & bottom 5% when dataset is large enough.
Count
—
Insights
- No values analysed yet.
How to Use
- Paste or type your dataset into the values box.
- Click Calculate Range to compute min, max, range, midrange, and trimmed range.
- Use the cleaning button to remove non-numeric tokens quickly.
- Review insights to detect outliers and understand whether the spread is dominated by extremes.
- Reset when starting a new dataset to avoid leftover values.
Formula Reference
Range = max(X) − min(X). Midrange = (max(X) + min(X)) / 2. Trimmed range excludes a fixed percentage of extreme values before computing min and max to reduce outlier impact.