advanced_data_preprocessing
Transform numeric series for modeling using normalization, standardization, missing-value handling, or outlier detection. Returns a report with parameters and preview.
Instructions
Transform a numeric series for downstream modeling: min-max normalization, z-score standardization, missing-value handling, or IQR outlier detection. Returns a markdown report with the transform's parameters and a preview of the resulting values. Use analyze_dataset to describe data without changing it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | The numeric series to transform: a number[], or an array of {key: number} records (values are flattened). | |
| preprocessingType | Yes | 'normalization' (scale to [0,1]), 'standardization' (z-scores), 'missing_value_handling' (drop invalid/missing entries), or 'outlier_detection' (flag values outside the IQR fences). |