Skip to content

Commit 7231837

Browse files
committed
DOC: Add the description of SparseArray.all
1 parent 812e59e commit 7231837

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pandas/core/sparse/array.py

+7
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,13 @@ def fillna(self, value, downcast=None):
615615
fill_value=fill_value)
616616

617617
def all(self, axis=0, *args, **kwargs):
618+
"""
619+
Tests whether all elements evaluate True
620+
621+
Returns
622+
-------
623+
all : bool
624+
"""
618625
nv.validate_all(args, kwargs)
619626

620627
values = self.sp_values

0 commit comments

Comments
 (0)