From 0d8e7c976b8e39e1a32053b6e4382fbb5cbe5c3a Mon Sep 17 00:00:00 2001 From: Ming Li Date: Fri, 25 May 2018 20:46:55 +0100 Subject: [PATCH] styling deprecated message --- pandas/core/frame.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 1d8f225bd4342..d4ce8dc166b09 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -4177,8 +4177,9 @@ def dropna(self, axis=0, how='any', thresh=None, subset=None, * 0, or 'index' : Drop rows which contain missing values. * 1, or 'columns' : Drop columns which contain missing value. - .. deprecated:: 0.23.0: Pass tuple or list to drop on multiple - axes. + .. deprecated:: 0.23.0 + Pass tuple or list to drop on multiple axes. + how : {'any', 'all'}, default 'any' Determine if row or column is removed from DataFrame, when we have at least one NA or all NA.