-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
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
fix for BUG: grouping with tz-aware: Values falls after last bin #24973
Merged
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1940cfd
fix #24972
ahcub dd42200
improve comment
ahcub f8cb89a
add entry to what's new
ahcub eccca8e
add test for issue 24972
ahcub 0454dc3
remove import
ahcub b009f17
change fix for values fall after last bin
ahcub 66861ab
fix imports
ahcub dda1c5c
fix imports
ahcub 3edb267
change the description
ahcub c0bc3a5
move test from groupby to timegrouper
ahcub e631821
fix typo
ahcub 5c07d25
move tests
ahcub df7d650
chagne the bug fix description
ahcub bcc0599
Merge branch 'master' into master
ahcub 9c7d0e1
Merge branch 'master' into master
ahcub 47eb40b
remove the record that is not on master anymore
ahcub File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
fix #24972
- Loading branch information
commit 1940cfd6b387ca427c46b02c0e547250cbc6ac10
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should go in _adjust_bin_edges
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there are a lot of issues with generating the remaining bins when I try to move it there. if this way of generating the bins is the correct one then I believe that it is better to leave it here. in _adjust_bin_edges we lose information about ax tz
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or this should possibly be fixed in
_get_timestamp_range_edges
. This patch here seems like a bandaid.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, let me apply the patch you suggested in the issue description, it does look better for me.