clean_data
Clean CSV datasets by removing nulls, filling missing values, dropping duplicates, standardizing columns, and converting data types.
Instructions
Perform data cleaning operations and return results.
Args: dataset_path: Path to the dataset file (CSV format) operations: List of cleaning operations - "remove_nulls", "fill_nulls", "remove_duplicates", "standardize_columns", "convert_types" output_path: Path to save cleaned dataset (optional)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operations | Yes | ||
| output_path | No | ||
| dataset_path | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |