-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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: Support for list of formats in pd.to_datetime() (pandas-dev#55226) #55698
Conversation
[expected_ds, getattr(Timestamp, attribute)()], dtype="datetime64[ns, UTC]" | ||
) | ||
assert (expected - result).max().total_seconds() < 1 | ||
|
||
|
||
#MUDEI AQUI |
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.
thanks for starting this - could you mark this as draft please and ping me when it's ready for review?
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.
Thanks for the encouragement, I've already put it as a draft
Hello @MarcoGorelli we need a review for this code. |
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's a tonne of irrelevant stuff in this PR, please remove it
This reverts commit be1a212.
Hello @MarcoGorelli , I reverted a commit with many graph images that had nothing to do with the issue. Can you review for us? Thank you for your patience. |
This pull request is stale because it has been open for thirty days with no activity. Please update and respond to this comment if you're still interested in working on this. |
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's still several unrelated things
there's a lot of stuff to do, please make sure this is in good shape before asking for a review
@@ -715,13 +718,14 @@ def to_datetime( | |||
... | |||
|
|||
|
|||
#MUDANDO AQUI |
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.
e.g. this
Thanks for the pull request, but it appears to have gone stale. If interested in continuing, please merge in the main branch, address any review comments and/or failing tests, and we can reopen. |
Trying to convert format list for each data list element.
The idea is to make the format argument more flexible to accept a list, in order to specify the format for each date in a list.