Skip to content

Commit

Permalink
DEPR: remove reduce kwd from DataFrame.apply (#29730)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel authored and WillAyd committed Nov 20, 2019
1 parent 75815b2 commit e080474
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -6474,9 +6474,7 @@ def transform(self, func, axis=0, *args, **kwargs):
return self.T.transform(func, *args, **kwargs).T
return super().transform(func, *args, **kwargs)

def apply(
self, func, axis=0, raw=False, reduce=None, result_type=None, args=(), **kwds
):
def apply(self, func, axis=0, raw=False, result_type=None, args=(), **kwds):
"""
Apply a function along an axis of the DataFrame.
Expand Down

0 comments on commit e080474

Please sign in to comment.