-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
DEPR: Patch to_dense behaviour for sparse. #14686
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jreback
added
API Design
Sparse
Sparse Data Type
Deprecate
Functionality to remove in pandas
labels
Nov 18, 2016
lgtm |
1 task
jreback
changed the title
BUG: Patch to_dense behaviour for sparse.
DEPR: Patch to_dense behaviour for sparse.
Nov 18, 2016
Current coverage is 85.21% (diff: 100%)@@ master #14686 diff @@
==========================================
Files 143 143
Lines 50796 50800 +4
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
+ Hits 43285 43288 +3
- Misses 7511 7512 +1
Partials 0 0
|
gfyoung
force-pushed
the
to-dense-patch
branch
5 times, most recently
from
November 22, 2016 18:28
0c2f535
to
867fe23
Compare
Patches the following for to_dense: 1) Fix SparseArray.to_dense documentation to refer to SparseArray and not SparseSeries. 2) Deprecate the fill parameter in SparseArray.to_dense, as that parameter was not being respected. 3) Deprecate the sparse_only parameter in SparseSeries.to_dense, as that parameter is inconsistent with the to_dense API we want, which is no parameters. Closes pandas-devgh-14647.
gfyoung
force-pushed
the
to-dense-patch
branch
from
November 23, 2016 01:51
867fe23
to
ad7da32
Compare
lgtm. tough travis is not passing. |
@jreback : One of the build machines appears to have broke for a reason unrelated to this PR. Are you able to restart the build on your end? |
@jreback : Everything is passing. Ready to merge if there is nothing else. |
thanks! |
gfyoung
added a commit
to forking-repos/pandas
that referenced
this pull request
Sep 30, 2018
Also deprecate `fill` in `.get_values` because its parameter was being passed to `.to_dense`, which no longer accepts the `fill` parameter. xref pandas-devgh-14686.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this pull request
Oct 16, 2018
Also deprecate `fill` in `.get_values` because its parameter was being passed to `.to_dense`, which no longer accepts the `fill` parameter. xref pandas-devgh-14686.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this pull request
Oct 18, 2018
Also deprecate `fill` in `.get_values` because its parameter was being passed to `.to_dense`, which no longer accepts the `fill` parameter. xref pandas-devgh-14686.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this pull request
Oct 18, 2018
Also deprecate `fill` in `.get_values` because its parameter was being passed to `.to_dense`, which no longer accepts the `fill` parameter. xref pandas-devgh-14686.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this pull request
Oct 18, 2018
Also deprecate `fill` in `.get_values` because its parameter was being passed to `.to_dense`, which no longer accepts the `fill` parameter. xref pandas-devgh-14686.
jreback
pushed a commit
that referenced
this pull request
Oct 18, 2018
Also deprecate `fill` in `.get_values` because its parameter was being passed to `.to_dense`, which no longer accepts the `fill` parameter. xref gh-14686.
tm9k1
pushed a commit
to tm9k1/pandas
that referenced
this pull request
Nov 19, 2018
Also deprecate `fill` in `.get_values` because its parameter was being passed to `.to_dense`, which no longer accepts the `fill` parameter. xref pandas-devgh-14686.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Patches the following for
to_dense
:Fix
SparseArray.to_dense
documentation to refer toSparseArray
and notSparseSeries
.Deprecate the fill parameter in
SparseArray.to_dense
, as that parameter was not being respected.Deprecate the sparse_only parameter in
SparseSeries.to_dense
, as that parameter is inconsistent with theto_dense
API we want, which is no parameters.Closes #14647.