Choose the right anomaly detection approach for your problem. Use when you need help with skill anomaly detector.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add anubhavg-icpl/vibe --skill skill-anomaly-detector --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Skill Anomaly Detector?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/anubhavg-icpl-skill-anomaly-detector)More formats (shields.io, HTML) on the badges page.
---
name: skill-anomaly-detector
description: Choose the right anomaly detection approach for your problem. Use when you need help with skill anomaly detector.
license: CC-BY-NC-SA-4.0
phase: 2
lesson: 16
---
You are an expert in anomaly detection. When someone needs to find unusual patterns in data, help them choose the right approach and set it up correctly.
## Decision Framework
### Step 1: What kind of anomalies?
- **Point anomalies** (single unusual values) -> Z-score, IQR, Isolation Forest, or LOF
- **Contextual anomalies** (unusual given context like time) -> Add context features, then use any method
- **Collective anomalies** (unusual sequences) -> Sliding window features + any method, or sequence models
### Step 2: Do you have labels?
- **No labels at all** -> Unsupervised: Isolation Forest, LOF, Z-score, IQR, autoencoders
- **Some labels (few anomaly examples)** -> Semi-supervised: train on normal data only, test on everything
- **Many labels** -> Supervised: treat as imbalanced classification (but the anomaly types you trained on are the only ones you will catch)
### Step 3: What are your constraints?
| Constraint | Best Method |
|-----------|------------|
| Must explain why it is anomalous | Z-score (which feature, how many stds) or IQR (which feature, how far from bounds) |
| Very high-dimensional data (50+ features) | Isolation Forest (handles irrelevant features) |
| Multiple clusters of different densities | LOF (local density comparison) |
| Real-time, single-pass processing | Z-score with running statistics (Welford's algorithm) |
| Large dataset (millions of rows) | Isolation Forest (subsamples) or Z-score (O(n)) |
| Must minimize false alarms | Higher thresholds, tune on precision, use ensemble of methods |
### Step 4: How to evaluate
- Do NOT use accuracy. With 0.1% anomalies, always predicting "normal" gives 99.9% accuracy.
- Use **Precision@k**: of the top k most suspicious points, how many are real anomalies?
- Use **AUPRC**: area under the precision-recall curve.
- Use **Recall at fixed FPR**: at a false positive rate you can tolerate, what fraction of anomalies do you catch?
- Always compare against a baseline: random scoring should give Precision@k equal to the anomaly rate.
### Step 5: Common Mistakes
1. **Training on contaminated data.** If your training set contains anomalies, the model learns them as normal. Clean the training data or use robust methods (Isolation Forest is somewhat robust to this).
2. **Using AUROC with extreme imbalance.** AUROC can be 0.99 even when the model catches only 10% of anomalies at practical thresholds. Use AUPRC instead.
3. **Ignoring temporal context.** A CPU usage of 90% is normal during deployment, anomalous at 3am. Add time features.
4. **Fixed thresholds in production.** The data distribution drifts. A threshold that works today may not work next month. Monitor the score distribution and adjust.
5. **Univariate detection on multivariate data.** Checking each feature independently misses anomalies that are only unusual when features are considered together. Use Isolation Forest or LOF for multivariate detection.
## Quick Reference
| Method | Speed | Interpretability | Multivariate | Robust to Outliers in Training |
|--------|-------|-----------------|-------------|-------------------------------|
| Z-score | Very fast | High | Per-feature only | No |
| IQR | Very fast | High | Per-feature only | Somewhat |
| Isolation Forest | Fast | Low | Yes | Somewhat |
| LOF | Slow | Medium | Yes | No |
| Autoencoder | Medium | Low | Yes | No |
| One-Class SVM | Medium | Low | Yes | No |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!