What problem does it solve? Raw competition data often contains missing values, outliers, inconsistent types, and unnormalized scales that corrupt mathematical models. This Skill provides a systematic pandas-based pipeline that transforms messy raw data into clean, documented datasets ready for MCM/ICM modeling. ## Core Features & Use Cases - Missing Value Handling: Automatically drops high-missing columns and imputes remaining gaps using median, mode, forward-fill, or interpolation strategies. - Outlier Detection and Treatment: Detects outliers via IQR or Z-score methods and handles them by capping, removing, or keeping with full reporting. - Normalization and Type Fixing: Applies standard, min-max, or robust scaling and converts columns to proper datetime or categorical types. - Use Case: After downloading a raw CSV of economic indicators for an MCM problem, run the complete pipeline to produce a cleaned dataset plus a JSON quality report documenting every cleaning decision for your paper. ## Quick Start Clean the raw data file data/raw_data.csv by handling missing values automatically, capping outliers, and saving the processed dataset with a cleaning report.