check_outliers
Detect outliers in numeric columns with three side-by-side methods: z-score, IQR, and modified z-score. Get counts, extreme values, and row indices to pinpoint anomalies.
Instructions
Detect outliers in numeric columns using three methods side-by-side.
Methods: z-score (>3σ), IQR (>1.5×IQR beyond Q1/Q3), modified z-score
(median-MAD-based, robust to outliers themselves). Returns counts +
sample extreme values + row indices per method per column. Disagreement
between methods is itself diagnostic.
`verbose=False` (default) drops per-method extreme-value arrays from
the response (top-5 per flagged column is still in top_findings); set
True for the full dump. Full arrays are always in the artifact.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| columns | No | ||
| verbose | No | ||
| source_id | Yes | ||
| max_per_method | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||