-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
BUG: fix tzaware dataframe transpose bug #26825
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
c9130f8
BUG: fix tzaware dataframe transpose bug
jbrockmendel 908465a
move TestTranspose
jbrockmendel 2b89d35
actually save
jbrockmendel 7bcdf16
Merge branch 'master' of https://github.com/pandas-dev/pandas into fr…
jbrockmendel f5759e6
troubleshoot windows fails
jbrockmendel 3419983
Fix one more FIXME
jbrockmendel 528015e
separate out _recast_datetimelike_Result
jbrockmendel 508f8ae
Add GH references to tests
jbrockmendel c64d31f
add whatsnew
jbrockmendel 6bd1a0a
annotation, typo fixup
jbrockmendel baacaaf
dont alter inplace
jbrockmendel c23edcc
Merge branch 'master' of https://github.com/pandas-dev/pandas into fr…
jbrockmendel b559753
Merge branch 'master' of https://github.com/pandas-dev/pandas into fr…
jbrockmendel e39370c
use maybe_convert_objects
jbrockmendel 00b31e4
xfail tests where possible
jbrockmendel 0a9a886
simplify list comprehension
jbrockmendel e88bc00
Merge branch 'master' of https://github.com/pandas-dev/pandas into fr…
jbrockmendel 3c49874
Merge branch 'master' of https://github.com/pandas-dev/pandas into fr…
jbrockmendel 5c38a76
single assignment
jbrockmendel 657aa0c
fall through to create_block_manager_from_blocks
jbrockmendel be106cc
Merge branch 'master' of https://github.com/pandas-dev/pandas into fr…
jbrockmendel 820c4e4
Fix assignment error
jbrockmendel 8b2372e
Merge branch 'master' of https://github.com/pandas-dev/pandas into fr…
jbrockmendel 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
simplify list comprehension
- Loading branch information
commit 0a9a886974c0b61a235d3d21bb61e84c899e200f
There are no files selected for viewing
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
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.
this is much more messy, can we change something else to make this nicer?
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.
Not really. I'm looking into the other places where maybe_infer_to_datetimelike is used to see if some of this can go into that. We could separate this whole block into a dedicated function. But one way or another we need to bite the bullet.
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.
so the inside of list loop should be in pandas.core.dtypes.cast, no? (obviously up until you make the blocks themselves)
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.
I'd like to leave this for the next pass when I'm taking a more systematic look at maybe_infer_to_datetimelike