We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dmy_h() has the same code as dmy_hm() and fails to decode valid input.
dmy_h("05-07-2011 13")
returns [1] "2020-07-05 11:01:00 UTC"
[1] "2020-07-05 11:01:00 UTC"
looks to me like orders = "dmyR" should be changed to orders = "dmyr" in the definition of this function.
orders = "dmyR"
orders = "dmyr"
The text was updated successfully, but these errors were encountered:
1eb5a02
Thanks. Your diagnostic is correct.
Sorry, something went wrong.
No branches or pull requests
dmy_h() has the same code as dmy_hm() and fails to decode valid input.
returns
[1] "2020-07-05 11:01:00 UTC"
looks to me like
orders = "dmyR"
should be changed toorders = "dmyr"
in the definition of this function.The text was updated successfully, but these errors were encountered: