Dixon’s Q Test Calculator
Use this tool to check whether the lowest or highest value in a small dataset appears to be an outlier.
What is the Q test?
The Dixon Q test is a classic statistical test used to identify a possible outlier in a small sample. It compares the gap between a suspicious value and its nearest neighbor against the total range of the dataset.
In plain language: if one value is unusually far away from the rest, the Q test helps you decide whether that point is likely an outlier or just normal variation.
When should you use a Q test calculator?
- Your sample size is small (commonly 3 to 10 observations).
- You suspect one extreme value at either the low or high end.
- The data are roughly from a single, similar measurement process.
- You want a quick, objective check before excluding a datapoint.
The calculator above uses commonly referenced Dixon Q critical values for n = 3 to 10 and confidence levels of 90%, 95%, and 99%.
How the calculation works
1) Sort the data
The observations are first sorted from smallest to largest.
2) Compute range and gap
For a low-end suspected outlier:
Qlow = (x2 - x1) / (xn - x1)
For a high-end suspected outlier:
Qhigh = (xn - xn-1) / (xn - x1)
3) Compare with a critical value
If the calculated Q is greater than the table critical value at your chosen confidence level, the suspicious point may be treated as an outlier.
Interpreting your result
- Q calculated > Q critical: evidence suggests an outlier at that end.
- Q calculated ≤ Q critical: not enough evidence to reject that point as an outlier.
Important: statistical outlier detection should support, not replace, scientific judgment. If a value comes from an instrument error, logging typo, or contaminated sample, that practical context matters as much as the test result.
Example
Suppose your values are: 10.1, 10.3, 10.2, 10.4, 11.8. Sorted data: 10.1, 10.2, 10.3, 10.4, 11.8.
If testing the highest value (11.8): gap = 11.8 - 10.4 = 1.4 range = 11.8 - 10.1 = 1.7 Q = 1.4 / 1.7 = 0.824
For n=5 at 95% confidence, Q critical is about 0.710. Since 0.824 > 0.710, 11.8 is flagged as a potential outlier.
Limitations and best practices
Limitations
- Designed for small samples; not ideal for large datasets.
- Generally intended for a single outlier at a time.
- Sensitive to non-normal or mixed-source data.
Best practices
- Document why any point was excluded.
- Report analysis with and without the suspected outlier when possible.
- Combine statistical tests with domain expertise.
- Use Grubbs’ test or robust methods for other scenarios.
Final thought
A good Q test calculator gives you speed and consistency, but your interpretation should always be tied to experimental context. Use the result as a guide, then make a transparent, evidence-based decision.