Detecting Data Anomalies
Overview
Identify anomalies and outliers in datasets using statistical and machine learning algorithms including Isolation Forest, One-Class SVM, Local Outlier Factor, and autoencoders. This skill handles the full detection pipeline from data ingestion and feature scaling through algorithm selection, threshold tuning, and result interpretation with anomaly scoring.
Prerequisites
- Python 3.9+ with scikit-learn >= 1.3 (
pip install scikit-learn)
- pandas and NumPy for data manipulation (
pip install pandas numpy)
- matplotlib or seaborn for anomaly visualizations (
pip install matplotlib seaborn)
- Dataset in CSV, JSON, Parquet, or database-queryable format
- Minimum 500 data points for statistical significance (1000+ recommended)
- Optional: PyTorch or TensorFlow for autoencoder-based detection on complex patterns
Instructions
- Load the dataset using the Read tool and verify schema, column types, and row count
- Profile feature distributions using descriptive statistics to understand baseline behavior
- Handle missing values via imputation (median for numeric, mode for categorical) or row exclusion
- Apply StandardScaler or MinMaxScaler to numeric features to normalize magnitude differences
- Select the detection algorithm based on data characteristics:
- Isolation Forest: high-dimensional data, no assumptions on distribution
- One-Class SVM: well-defined normal class with clear decision boundary
- Local Outlier Factor: density-varying data with local anomaly patterns
- Autoencoder: complex temporal or image data with non-linear relationships
- Set the contamination parameter to the expected anomaly proportion (start with 0.01-0.05)
- Fit the model on the training partition and generate anomaly scores for each data point
- Apply the decision threshold to classify points as normal (-1) or anomalous (1)
- Analyze flagged anomalies for common characteristics, temporal clusters, or feature correlations
- Generate a summary report with detection counts, score distributions, and visualization plots
See ${CLAUDE_SKILL_DIR}/references/implementation.md for the detailed implementation guide.
Output
- Anomaly detection summary: total points, anomaly count, contamination rate
- Per-record anomaly scores with classification labels
- Algorithm configuration: model type, contamination, distance metric, threshold
- Feature importance ranking showing which dimensions drive anomaly flags
- Visualization: scatter plot of anomaly scores, distribution histogram, t-SNE cluster plot
- CSV export of flagged records with anomaly scores and contributing features
Error Handling
| Error |
Cause |
Solution |
| Insufficient data volume |
Fewer than 100 data points for model fitting |
Collect additional data or switch to simple statistical methods (z-score, IQR) |
| High false positive rate |
Contamination parameter set too high or features not scaled |
Lower contamination to 0.01; verify StandardScaler applied; refine feature selection |
| Algorithm OOM on large dataset |
Isolation Forest or LOF exceeds available memory |
Subsample data for training; use max_samples parameter; switch to streaming approach |
| Feature scaling mismatch |
Mixed numeric and categorical features without proper encoding |
One-hot encode categoricals separately; scale numeric features independently |
| No ground truth for validation |
Unlabeled dataset prevents accuracy measurement |
Use domain expert review on top-N anomalies; implement feedback loop to refine threshold |
See ${CLAUDE_SKILL_DIR}/references/errors.md for the full error reference.
Examples
Scenario 1: Network Intrusion Detection -- Apply Isolation Forest to 50K network flow records with features: packet count, byte volume, duration, protocol type. Expected contamination: 2%. Target: flag port-scan and DDoS patterns with precision above 0.85.
Scenario 2: Manufacturing Quality Control -- Run LOF on sensor readings (temperature, vibration, pressure) from 10K production cycles. Detect equipment degradation anomalies. Visualize flagged cycles on a time-series plot with normal operating bands.
Scenario 3: Financial Transaction Monitoring -- Train an autoencoder on 100K legitimate transactions. Reconstruct test transactions and flag those with reconstruction error above the 99th percentile. Report flagged transactions with amount, merchant category, and time-of-day features.
Resources
- scikit-learn Anomaly Detection -- Isolation Forest, LOF, One-Class SVM
- PyOD Library -- 40+ outlier detection algorithms with unified API
- Autoencoder anomaly detection: Keras/PyTorch reconstruction-error approach
- Feature scaling: StandardScaler, RobustScaler, MinMaxScaler selection guide
- Evaluation without labels: silhouette analysis, domain expert review protocols
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: jeremylongshore-claude-code-plugins-plus-skills-detecting-da3description: Detecting Data Anomalies4---5# Detecting Data Anomalies67## Overview89Identify anomalies and outliers in datasets using statistical and machine learning algorithms including Isolation Forest, One-Class SVM, Local Outlier Factor, and autoencoders. This skill handles the full detection pipeline from data ingestion and feature scaling through algorithm selection, threshold tuning, and result interpretation with anomaly scoring.1011## Prerequisites1213- Python 3.9+ with scikit-learn >= 1.3 (`pip install scikit-learn`)14- pandas and NumPy for data manipulation (`pip install pandas numpy`)15- matplotlib or seaborn for anomaly visualizations (`pip install matplotlib seaborn`)16- Dataset in CSV, JSON, Parquet, or database-queryable format17- Minimum 500 data points for statistical significance (1000+ recommended)18- Optional: PyTorch or TensorFlow for autoencoder-based detection on complex patterns1920## Instructions21221. Load the dataset using the Read tool and verify schema, column types, and row count232. Profile feature distributions using descriptive statistics to understand baseline behavior243. Handle missing values via imputation (median for numeric, mode for categorical) or row exclusion254. Apply StandardScaler or MinMaxScaler to numeric features to normalize magnitude differences265. Select the detection algorithm based on data characteristics:27 - **Isolation Forest**: high-dimensional data, no assumptions on distribution28 - **One-Class SVM**: well-defined normal class with clear decision boundary29 - **Local Outlier Factor**: density-varying data with local anomaly patterns30 - **Autoencoder**: complex temporal or image data with non-linear relationships316. Set the contamination parameter to the expected anomaly proportion (start with 0.01-0.05)327. Fit the model on the training partition and generate anomaly scores for each data point338. Apply the decision threshold to classify points as normal (-1) or anomalous (1)349. Analyze flagged anomalies for common characteristics, temporal clusters, or feature correlations3510. Generate a summary report with detection counts, score distributions, and visualization plots3637See `${CLAUDE_SKILL_DIR}/references/implementation.md` for the detailed implementation guide.3839## Output4041- Anomaly detection summary: total points, anomaly count, contamination rate42- Per-record anomaly scores with classification labels43- Algorithm configuration: model type, contamination, distance metric, threshold44- Feature importance ranking showing which dimensions drive anomaly flags45- Visualization: scatter plot of anomaly scores, distribution histogram, t-SNE cluster plot46- CSV export of flagged records with anomaly scores and contributing features4748## Error Handling4950| Error | Cause | Solution |51|-------|-------|----------|52| Insufficient data volume | Fewer than 100 data points for model fitting | Collect additional data or switch to simple statistical methods (z-score, IQR) |53| High false positive rate | Contamination parameter set too high or features not scaled | Lower contamination to 0.01; verify StandardScaler applied; refine feature selection |54| Algorithm OOM on large dataset | Isolation Forest or LOF exceeds available memory | Subsample data for training; use `max_samples` parameter; switch to streaming approach |55| Feature scaling mismatch | Mixed numeric and categorical features without proper encoding | One-hot encode categoricals separately; scale numeric features independently |56| No ground truth for validation | Unlabeled dataset prevents accuracy measurement | Use domain expert review on top-N anomalies; implement feedback loop to refine threshold |5758See `${CLAUDE_SKILL_DIR}/references/errors.md` for the full error reference.5960## Examples6162**Scenario 1: Network Intrusion Detection** -- Apply Isolation Forest to 50K network flow records with features: packet count, byte volume, duration, protocol type. Expected contamination: 2%. Target: flag port-scan and DDoS patterns with precision above 0.85.6364**Scenario 2: Manufacturing Quality Control** -- Run LOF on sensor readings (temperature, vibration, pressure) from 10K production cycles. Detect equipment degradation anomalies. Visualize flagged cycles on a time-series plot with normal operating bands.6566**Scenario 3: Financial Transaction Monitoring** -- Train an autoencoder on 100K legitimate transactions. Reconstruct test transactions and flag those with reconstruction error above the 99th percentile. Report flagged transactions with amount, merchant category, and time-of-day features.6768## Resources6970- [scikit-learn Anomaly Detection](https://scikit-learn.org/stable/modules/outlier_detection.html) -- Isolation Forest, LOF, One-Class SVM71- [PyOD Library](https://pyod.readthedocs.io/) -- 40+ outlier detection algorithms with unified API72- Autoencoder anomaly detection: Keras/PyTorch reconstruction-error approach73- Feature scaling: StandardScaler, RobustScaler, MinMaxScaler selection guide74- Evaluation without labels: silhouette analysis, domain expert review protocols7576---77> Converted and distributed by [TomeVault](https://tomevault.io/claim/jeremylongshore) — claim your Tome and manage your conversions.78<!-- tomevault:4.0:skill_md:2026-04-11 -->