On this page
pandas.Panel.dropna
Panel.dropna(axis=0, how='any', inplace=False)
-
Drop 2D from panel, holding passed axis constant
Parameters: axis : int, default 0
Axis to hold constant. E.g. axis=1 will drop major_axis entries having a certain amount of NA data
how : {‘all’, ‘any’}, default ‘any’
‘any’: one or more values are NA in the DataFrame along the axis. For ‘all’ they all must be.
inplace : bool, default False
If True, do operation inplace and return None.
Returns: dropped : Panel
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.18.1/generated/pandas.Panel.dropna.html