You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* BUG: Identify SparseDataFrame as sparse
The is_sparse function checks to see if
an array-like is spare by checking to see
if it is an instance of ABCSparseArray or
ABCSparseSeries. This commit adds
ABCSparseDataFrame to that list -- so it
can detect that a DataFrame (which is an
array-like object) is sparse.
Added a test for this.
* Revert "BUG: Identify SparseDataFrame as sparse"
This reverts commit 10dffd1.
The previous commit's change was not necessary.
Will add a docstring to clarify the behaviour of the method.
* DOC: Revise is_sparce docstring
Clean up the docstring for is_sparse so it confirms to the
documentation style guide.
Add additional examples and clarify that is_sparse
expect a 1-dimensional array-like.
* DOC: Adjust is_sparse docstring.
Responding to pull request comments.
0 commit comments