From edba220173f2235d6d88ac1d573b68464fac9a19 Mon Sep 17 00:00:00 2001 From: Pawel Kranzberg Date: Tue, 27 Jun 2023 07:15:43 +0200 Subject: [PATCH] Update frame.py - remove incorrect line from dropna docs Remove incorrect line "Pass tuple or list to drop on multiple axes. " from dropna, as the ability to drop on multiple axes has been depreciated. --- pandas/core/frame.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index c7e8f74ff7849..72e57724ab7bc 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -6164,7 +6164,6 @@ def dropna( * 0, or 'index' : Drop rows which contain missing values. * 1, or 'columns' : Drop columns which contain missing value. - Pass tuple or list to drop on multiple axes. Only a single axis is allowed. how : {'any', 'all'}, default 'any'