@@ -370,7 +370,7 @@ def min(self, axis=None, skipna=True, *args, **kwargs):
370
370
371
371
See Also
372
372
--------
373
- numpy.ndarray.min
373
+ numpy.ndarray.min : Return the minimum along a given axis.
374
374
Series.min : Return the minimum value in a Series.
375
375
"""
376
376
nv .validate_min (args , kwargs )
@@ -406,7 +406,7 @@ def argmin(self, axis=None, skipna=True, *args, **kwargs):
406
406
407
407
See Also
408
408
--------
409
- numpy.ndarray.argmin
409
+ numpy.ndarray.argmin : Return indices of the minimum values along the given axis.
410
410
"""
411
411
nv .validate_argmin (args , kwargs )
412
412
nv .validate_minmax_axis (axis )
@@ -427,7 +427,7 @@ def max(self, axis=None, skipna=True, *args, **kwargs):
427
427
428
428
See Also
429
429
--------
430
- numpy.ndarray.max
430
+ numpy.ndarray.max : Return the maximum along a given axis.
431
431
Series.max : Return the maximum value in a Series.
432
432
"""
433
433
nv .validate_max (args , kwargs )
@@ -463,7 +463,7 @@ def argmax(self, axis=None, skipna=True, *args, **kwargs):
463
463
464
464
See Also
465
465
--------
466
- numpy.ndarray.argmax
466
+ numpy.ndarray.argmax : Return indices of the maximum values along the given axis.
467
467
"""
468
468
nv .validate_argmax (args , kwargs )
469
469
nv .validate_minmax_axis (axis )
0 commit comments