Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Add sparse Accessor for SparseDtype data #23148

Closed
TomAugspurger opened this issue Oct 14, 2018 · 1 comment
Closed

ENH: Add sparse Accessor for SparseDtype data #23148

TomAugspurger opened this issue Oct 14, 2018 · 1 comment
Labels
Deprecate Functionality to remove in pandas Sparse Sparse Data Type
Milestone

Comments

@TomAugspurger
Copy link
Contributor

TomAugspurger commented Oct 14, 2018

This is a blocker for removing SparseDataFrame and SparseSeries.

We'd register it for Series and DataFrame I think.

In [4]: [x for x in set(dir(pd.SparseSeries)) - set(dir(pd.Series)) if not x.startswith('_')]
Out[4]:
['from_coo',
 'block',
 'npoints',
 'sparse_reindex',
 'kind',
 'density',
 'as_sparse_array',
 'fill_value',
 'to_coo',
 'sp_index',
 'sp_values']
In [15]: [x for x in set(dir(pd.DataFrame)) - set(dir(pd.DataFrame)) if not x.startswith('_')]
Out[15]: []
@TomAugspurger TomAugspurger added Sparse Sparse Data Type Deprecate Functionality to remove in pandas labels Oct 14, 2018
@TomAugspurger TomAugspurger added this to the 0.24.0 milestone Oct 14, 2018
@TomAugspurger
Copy link
Contributor Author

I've started on this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Deprecate Functionality to remove in pandas Sparse Sparse Data Type
Projects
None yet
Development

No branches or pull requests

1 participant