Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.CategoricalIndex.dropna

CategoricalIndex.dropna(how='any')[source]

Return Index without NA/NaN values

Parameters:

how : {‘any’, ‘all’}, default ‘any’

If the Index is a MultiIndex, drop the value when any or all levels are NaN.

Returns:

valid : Index

Scroll To Top