Skip to content

Commit e88507a

Browse files
committedNov 2, 2011
BUG: add DataFrame.product alias back in
1 parent 48348a2 commit e88507a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎pandas/core/frame.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2572,6 +2572,7 @@ def prod(self, axis=0, skipna=True, level=None):
25722572
result[count == 0] = nan
25732573

25742574
return Series(result, index=self._get_agg_axis(axis))
2575+
product = prod
25752576

25762577
def mean(self, axis=0, skipna=True, level=None):
25772578
"""

0 commit comments

Comments
 (0)
Please sign in to comment.