-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
PERF: always slice when indexing on columns #33597
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
Closed
Closed
Conversation
This file contains hidden or 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
@jbrockmendel can you maybe open an issue for this? As your questions seems to be more broad than the actual PR, and to not mix that discussion with code review of the actual PR |
i cant reproduce the test failures locally |
Opened #33780, mothballing this. |
5 tasks
4 tasks
this is quite old, happen to reopen if actively worked on. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Copy / view semantics
Indexing
Related to indexing on series/frames, not to indexes themselves
Internals
Related to non-user accessible pandas implementation
Mothballed
Temporarily-closed PR the author plans to return to
Performance
Memory or execution speed performance
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.
black pandas
git diff upstream/master -u -- "*.py" | flake8 --diff
Touched on in #32779, this makes all* DataFrame indexing-on-columns do slicing instead of taking, so doesn't make copies.
* Actually there is a different path in
_slice_take_blocks_ax0
that we go down if weself._is_single_block
, can update that later if we decide this is something we want to do.The tradeoff is that we end up with less-consolidated results. I'm OK with that, but there may be downsides I'm not aware of, will wait for others to weigh in.