Skip to content

ML.DATA.DROP_MISSING_ROWS

Drops missing values from the DataFrame.

Syntax

ML.DATA.DROP_MISSING_ROWS(data, how, thresh, subset)

Arguments

Name Type Default Description
data object The DataFrame to drop missing values from.
how str "any" The condition to drop missing values. Can be 'any' or 'all'. Defaults to 'any'.
thresh int None The minimum number of non-missing values required for a row to be kept.
subset list[str] None The columns to drop missing values from.

Examples

Examples coming soon

Working Excel formula examples for this function are not yet written.

See also