cudf.Index.dropna#

Index.dropna(
how: Literal['any', 'all'] = 'any',
) Self[source]#

Drop null rows from Index.

how{“any”, “all”}, default “any”

Specifies how to decide whether to drop a row. “any” (default) drops rows containing at least one null value. “all” drops only rows containing all null values.