'"Handles missing data using imputation strategies, deletion methods
Scanned 9/4/2026
Install to Claude Code
npx -y skills add paulpas/agent-skill-router --skill ds-missing-data --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ds Missing Data?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/paulpas-ds-missing-data)More formats (shields.io, HTML) on the badges page.
---
name: ds-missing-data
compatibility: opencode
completeness: 95
content-types:
- code
- guidance
- do-dont
- examples
description: '"Handles missing data using imputation strategies, deletion methods
and techniques for dealing with incomplete datasets while preserving information"'
license: MIT
maturity: stable
metadata:
domain: coding
output-format: code
related-skills: ds-data-quality, ds-eda, ds-feature-engineering
role: implementation
scope: implementation
triggers: missing data, imputation, NaN handling, missing values, how do i handle
missing data, data gaps
archetypes:
- tactical
- generation
anti_triggers:
- brainstorming
- vague ideation
- code golf
- over-engineering
response_profile:
verbosity: low
directive_strength: high
abstraction_level: operational
version: "1.0.0"
---
# Missing Data Handling
Comprehensive guide to missing data handling in machine learning and data science workflows.
## When to Use This Skill
- Solving real-world exploratory data analysis problems
- Building machine learning pipelines with missing data handling
- Implementing best practices for missing data handling
- Optimizing model performance using missing data handling techniques
- Learning industry-standard approaches to missing data handling
## When NOT to Use This Skill
- When using pre-built libraries without understanding underlying concepts
- For toy problems that don't require missing data handling rigor
- When domain expertise in specific problem requires different approach
- If your problem doesn't require the complexity this skill provides
## Purpose and Key Concepts
Missing Data Handling is a critical component of the machine learning workflow. This skill covers:
1. **Theoretical foundations** — Mathematical principles and statistical concepts
2. **Practical implementation** — Working code examples and patterns
3. **Common pitfalls** — Mistakes to avoid and how to recover from them
4. **Best practices** — Industry-standard approaches and optimization techniques
## Core Workflow
1. **Understand the problem** — Clearly define what you're solving for
2. **Select approach** — Choose the right technique for your data and constraints
3. **Implement solution** — Write clean, tested code following best practices
4. **Validate results** — Verify your implementation with tests and validation
5. **Optimize performance** — Improve efficiency and accuracy incrementally
## Implementation Patterns
### Pattern 1: Basic Missing Data Handling
```python
import pandas as pd
import numpy as np
from typing import Dict, Any, Literal
def apply_basic_imputation(df: pd.DataFrame, strategy: Literal["drop", "mean", "median", "mode"] = "mean") -> pd.DataFrame:
"""Apply basic missing data handling strategies to a DataFrame."""
if df.empty:
raise ValueError("Input DataFrame cannot be empty")
df_clean = df.copy()
numeric_cols = df.select_dtypes(include=[np.number]).columns
categorical_cols = df.select_dtypes(include=["object", "category"]).columns
if strategy == "drop":
df_clean = df_clean.dropna()
elif strategy == "mean":
df_clean[numeric_cols] = df_clean[numeric_cols].fillna(df_clean[numeric_cols].mean())
elif strategy == "median":
df_clean[numeric_cols] = df_clean[numeric_cols].fillna(df_clean[numeric_cols].median())
elif strategy == "mode":
for col in categorical_cols:
mode_val = df_clean[col].mode()
fill_val = mode_val.iloc[0] if not mode_val.empty else "Unknown"
df_clean[col] = df_clean[col].fillna(fill_val)
else:
raise ValueError(f"Unsupported strategy: {strategy}")
return df_clean
```
### Pattern 2: Production-Ready Missing Data Handling
```python
import logging
import pandas as pd
import numpy as np
from typing import Any, Dict, List, Optional
from sklearn.impute import SimpleImputer
from sklearn.compose import ColumnTransformer
logger = logging.getLogger(__name__)
class MissingDataHandler:
"""Production-grade missing data handler with configurable strategies."""
def __init__(self, numeric_strategy: str = "median", categorical_strategy: str = "most_frequent",
drop_threshold: float = 0.5, verbose: bool = False):
self.numeric_strategy = numeric_strategy
self.categorical_strategy = categorical_strategy
self.drop_threshold = drop_threshold
self.verbose = verbose
self.numeric_imputer: Optional[SimpleImputer] = None
self.categorical_imputer: Optional[SimpleImputer] = None
self.preprocessor: Optional[ColumnTransformer] = None
def _validate_input(self, data: pd.DataFrame) -> None:
if not isinstance(data, pd.DataFrame):
raise TypeError("Input must be a pandas DataFrame")
if data.empty:
raise ValueError("Input DataFrame cannot be empty")
def fit_transform(self, data: pd.DataFrame) -> Dict[str, Any]:
self._validate_input(data)
logger.info("Starting missing data handling pipeline")
numeric_cols = data.select_dtypes(include=[np.number]).columns.tolist()
categorical_cols = data.select_dtypes(include=["object", "category"]).columns.tolist()
missing_ratio = data.isnull().mean()
cols_to_drop = missing_ratio[missing_ratio > self.drop_threshold].index.tolist()
if cols_to_drop:
logger.warning(f"Dropping columns with >{self.drop_threshold*100}% missing: {cols_to_drop}")
data = data.drop(columns=cols_to_drop)
numeric_transformer = SimpleImputer(strategy=self.numeric_strategy)
categorical_transformer = SimpleImputer(strategy=self.categorical_strategy)
self.preprocessor = ColumnTransformer(
transformers=[
("num", numeric_transformer, numeric_cols)
("cat", categorical_transformer, categorical_cols)
], remainder="passthrough"
)
transformed_data = self.preprocessor.fit_transform(data)
result_df = pd.DataFrame(transformed_data, columns=data.columns.drop(cols_to_drop), index=data.index)
return {
"status": "success"
"data": result_df
"metadata": {
"original_shape": data.shape
"final_shape": result_df.shape
"dropped_columns": cols_to_drop
"strategies_used": {"numeric": self.numeric_strategy, "categorical": self.categorical_strategy}
}
}
```
## Best Practices
- ✅ Always validate your implementation on test data
- ✅ Document your assumptions and methodology
- ✅ Use version control for reproducibility
- ✅ Monitor performance metrics in production
- ✅ Periodically review and update your approach
- ✅ Test with edge cases and outliers
- ✅ Log all significant operations for debugging
```python
# BAD: Blindly dropping rows without assessing missingness pattern or data type
df_clean = df.dropna() # May discard 80% of data if missingness is non-random or structured
# GOOD: Assess missingness mechanism and data types before choosing strategy
MISSING_THRESHOLD = 0.5
numeric_cols = df.select_dtypes(include=[np.number]).columns
missing_pct = df.isnull().mean()
if missing_pct.max() > MISSING_THRESHOLD:
df_clean = df.drop(columns=missing_pct[missing_pct > MISSING_THRESHOLD].index)
else:
df_clean = df.copy()
df_clean[numeric_cols] = df_clean[numeric_cols].fillna(df_clean[numeric_cols].median())
df_clean = df_clean.dropna() # Safe to drop remaining rows after targeted imputation
```
## Common Pitfalls
| Pitfall | Problem | Solution |
|
---
---
## Constraints
### MUST DO
- Validate all data preprocessing steps are fit-only on training data, never on validation or test sets
- Implement reproducible pipelines with fixed random seeds and deterministic operations where possible
- Report model performance with confidence intervals via bootstrapping or cross-validation across multiple runs
- Log all experiments with parameters, metrics, and artifacts using MLflow or equivalent tracking system
### MUST NOT DO
- Do not evaluate a model on the same data used for training — always hold out a proper test set
- Avoid overfitting to the validation set by limiting hyperparameter search iterations
- Never use features that can only be computed at inference time (look-ahead bias)
- Do not report single-run accuracy without statistical significance testing or error bars
## Live References
> Authoritative documentation links for this skill's domain. The model follows markdown links at load time to resolve external references and inline content.
- [Scikit-learn Imputation](https://scikit-learn.org/stable/modules/impute.html)
- [SimpleImputer, KNNImputer — Scikit-learn docs](https://scikit-learn.org/stable/modules/impute.html)
- [Missing Data Analysis (NIST Engineering Handbook)](https://www.itl.nist.gov/div898/handbook/prc/section4/prc42.htm)
- [Multiple Imputation — Statistical Methods Review](https://onlinelibrary.wiley.com/doi/10.1002/sim.7508)
- [FancyImpute Library Documentation](https://github.com/missingdata/fancyimpute)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!