drop_missing
Remove rows with missing values, checking any or all specified columns, to clean datasets where entire rows are invalid.
Instructions
Drop rows with missing values. how: 'any' (any null) or 'all' (all null). subset: limit check to specific columns (None = all). Use when entire rows are invalid. For partial missingness, prefer fill_missing instead. Example: drop_missing(subset=["col1"], how="any")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| how | No | any | |
| subset | No | ||
| df_name | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |