@@ -10726,7 +10726,7 @@ def all(self, axis=0, bool_only=None, skipna=True, level=None, **kwargs):
10726
10726
10727
10727
@doc (
10728
10728
desc = "Return the mean absolute deviation of the values "
10729
- "for the requested axis." ,
10729
+ "over the requested axis." ,
10730
10730
name1 = name1 ,
10731
10731
name2 = name2 ,
10732
10732
axis_descr = axis_descr ,
@@ -10862,7 +10862,7 @@ def cumprod(self, axis=None, skipna=True, *args, **kwargs):
10862
10862
10863
10863
@doc (
10864
10864
_num_doc ,
10865
- desc = "Return the sum of the values for the requested axis.\n \n "
10865
+ desc = "Return the sum of the values over the requested axis.\n \n "
10866
10866
"This is equivalent to the method ``numpy.sum``." ,
10867
10867
name1 = name1 ,
10868
10868
name2 = name2 ,
@@ -10888,7 +10888,7 @@ def sum(
10888
10888
10889
10889
@doc (
10890
10890
_num_doc ,
10891
- desc = "Return the product of the values for the requested axis." ,
10891
+ desc = "Return the product of the values over the requested axis." ,
10892
10892
name1 = name1 ,
10893
10893
name2 = name2 ,
10894
10894
axis_descr = axis_descr ,
@@ -10914,7 +10914,7 @@ def prod(
10914
10914
10915
10915
@doc (
10916
10916
_num_doc ,
10917
- desc = "Return the mean of the values for the requested axis." ,
10917
+ desc = "Return the mean of the values over the requested axis." ,
10918
10918
name1 = name1 ,
10919
10919
name2 = name2 ,
10920
10920
axis_descr = axis_descr ,
@@ -10963,7 +10963,7 @@ def kurt(self, axis=None, skipna=None, level=None, numeric_only=None, **kwargs):
10963
10963
10964
10964
@doc (
10965
10965
_num_doc ,
10966
- desc = "Return the median of the values for the requested axis." ,
10966
+ desc = "Return the median of the values over the requested axis." ,
10967
10967
name1 = name1 ,
10968
10968
name2 = name2 ,
10969
10969
axis_descr = axis_descr ,
@@ -10980,7 +10980,7 @@ def median(
10980
10980
10981
10981
@doc (
10982
10982
_num_doc ,
10983
- desc = "Return the maximum of the values for the requested axis.\n \n "
10983
+ desc = "Return the maximum of the values over the requested axis.\n \n "
10984
10984
"If you want the *index* of the maximum, use ``idxmax``. This is"
10985
10985
"the equivalent of the ``numpy.ndarray`` method ``argmax``." ,
10986
10986
name1 = name1 ,
@@ -10997,7 +10997,7 @@ def max(self, axis=None, skipna=None, level=None, numeric_only=None, **kwargs):
10997
10997
10998
10998
@doc (
10999
10999
_num_doc ,
11000
- desc = "Return the minimum of the values for the requested axis.\n \n "
11000
+ desc = "Return the minimum of the values over the requested axis.\n \n "
11001
11001
"If you want the *index* of the minimum, use ``idxmin``. This is"
11002
11002
"the equivalent of the ``numpy.ndarray`` method ``argmin``." ,
11003
11003
name1 = name1 ,
0 commit comments