@@ -612,7 +612,7 @@ def ravel(self, order="C"):
612
612
613
613
See Also
614
614
--------
615
- numpy.ndarray.ravel
615
+ numpy.ndarray.ravel : Return a flattened array.
616
616
"""
617
617
return self ._values .ravel (order = order )
618
618
@@ -629,7 +629,7 @@ def compress(self, condition, *args, **kwargs):
629
629
630
630
See Also
631
631
--------
632
- numpy.ndarray.compress
632
+ numpy.ndarray.compress : Return selected slices of an array along given axis.
633
633
"""
634
634
msg = (
635
635
"Series.compress(condition) is deprecated. "
@@ -660,7 +660,7 @@ def nonzero(self):
660
660
661
661
See Also
662
662
--------
663
- numpy.nonzero
663
+ numpy.nonzero : Return the indices of the elements that are non-zero.
664
664
665
665
Examples
666
666
--------
@@ -697,7 +697,7 @@ def put(self, *args, **kwargs):
697
697
698
698
See Also
699
699
--------
700
- numpy.ndarray.put
700
+ numpy.ndarray.put : Set a.flat[n] = values[n] for all n in indices.
701
701
"""
702
702
warnings .warn (
703
703
"`put` has been deprecated and will be removed in a future version." ,
@@ -2302,8 +2302,8 @@ def quantile(self, q=0.5, interpolation="linear"):
2302
2302
2303
2303
See Also
2304
2304
--------
2305
- core.window.Rolling.quantile
2306
- numpy.percentile
2305
+ core.window.Rolling.quantile : Rolling quantile.
2306
+ numpy.percentile : Numpy function to compute the percentile.
2307
2307
2308
2308
Examples
2309
2309
--------
@@ -3307,7 +3307,7 @@ def argsort(self, axis=0, kind="quicksort", order=None):
3307
3307
3308
3308
See Also
3309
3309
--------
3310
- numpy.ndarray.argsort
3310
+ numpy.ndarray.argsort : Returns the indices that would sort this array.
3311
3311
"""
3312
3312
values = self ._values
3313
3313
mask = isna (values )
0 commit comments