Skip to content

Commit 15b8c5c

Browse files
committed
DOC: Add See Also to SparseArray.all, any
1 parent 19e3e44 commit 15b8c5c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pandas/core/sparse/array.py

+8
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,10 @@ def all(self, axis=0, *args, **kwargs):
621621
Returns
622622
-------
623623
all : bool
624+
625+
See Also
626+
--------
627+
numpy.all
624628
"""
625629
nv.validate_all(args, kwargs)
626630

@@ -638,6 +642,10 @@ def any(self, axis=0, *args, **kwargs):
638642
Returns
639643
-------
640644
any : bool
645+
646+
See Also
647+
--------
648+
numpy.any
641649
"""
642650
nv.validate_any(args, kwargs)
643651

0 commit comments

Comments
 (0)