@@ -10433,7 +10433,7 @@ def _add_numeric_operations(cls):
10433
10433
10434
10434
@doc (
10435
10435
desc = "Return the mean absolute deviation of the values "
10436
- "for the requested axis." ,
10436
+ "across the requested axis." ,
10437
10437
name1 = name1 ,
10438
10438
name2 = name2 ,
10439
10439
axis_descr = axis_descr ,
@@ -10560,7 +10560,7 @@ def mad(self, axis=None, skipna=None, level=None):
10560
10560
name1 = name1 ,
10561
10561
name2 = name2 ,
10562
10562
axis_descr = axis_descr ,
10563
- desc = "Return the sum of the values for the requested axis.\n \n "
10563
+ desc = "Return the sum of the values across the requested axis.\n \n "
10564
10564
"This is equivalent to the method ``numpy.sum``." ,
10565
10565
func = nanops .nansum ,
10566
10566
see_also = _stat_func_see_also ,
@@ -10572,7 +10572,7 @@ def mad(self, axis=None, skipna=None, level=None):
10572
10572
name1 = name1 ,
10573
10573
name2 = name2 ,
10574
10574
axis_descr = axis_descr ,
10575
- desc = "Return the mean of the values for the requested axis." ,
10575
+ desc = "Return the mean of the values across the requested axis." ,
10576
10576
func = nanops .nanmean ,
10577
10577
)
10578
10578
cls .skew = _make_stat_function (
@@ -10603,7 +10603,7 @@ def mad(self, axis=None, skipna=None, level=None):
10603
10603
name1 = name1 ,
10604
10604
name2 = name2 ,
10605
10605
axis_descr = axis_descr ,
10606
- desc = "Return the product of the values for the requested axis." ,
10606
+ desc = "Return the product of the values across the requested axis." ,
10607
10607
func = nanops .nanprod ,
10608
10608
examples = _prod_examples ,
10609
10609
)
@@ -10614,7 +10614,7 @@ def mad(self, axis=None, skipna=None, level=None):
10614
10614
name1 = name1 ,
10615
10615
name2 = name2 ,
10616
10616
axis_descr = axis_descr ,
10617
- desc = "Return the median of the values for the requested axis." ,
10617
+ desc = "Return the median of the values across the requested axis." ,
10618
10618
func = nanops .nanmedian ,
10619
10619
)
10620
10620
cls .max = _make_stat_function (
@@ -10623,7 +10623,7 @@ def mad(self, axis=None, skipna=None, level=None):
10623
10623
name1 = name1 ,
10624
10624
name2 = name2 ,
10625
10625
axis_descr = axis_descr ,
10626
- desc = "Return the maximum of the values for the requested axis.\n \n "
10626
+ desc = "Return the maximum of the values across the requested axis.\n \n "
10627
10627
"If you want the *index* of the maximum, use ``idxmax``. This is"
10628
10628
"the equivalent of the ``numpy.ndarray`` method ``argmax``." ,
10629
10629
func = nanops .nanmax ,
@@ -10636,7 +10636,7 @@ def mad(self, axis=None, skipna=None, level=None):
10636
10636
name1 = name1 ,
10637
10637
name2 = name2 ,
10638
10638
axis_descr = axis_descr ,
10639
- desc = "Return the minimum of the values for the requested axis.\n \n "
10639
+ desc = "Return the minimum of the values across the requested axis.\n \n "
10640
10640
"If you want the *index* of the minimum, use ``idxmin``. This is"
10641
10641
"the equivalent of the ``numpy.ndarray`` method ``argmin``." ,
10642
10642
func = nanops .nanmin ,
0 commit comments