hipdf.Index.dropna

Contents

hipdf.Index.dropna#

19 min read time

Applies to Linux

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

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.