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
> minutes(10) + seconds(50) + seconds(11) [1] "10M 61S"
Is there a way to get it to equal 11M 01S instead? Or a function to apply to 10M 61S to convert it to 11M 01S?
11M 01S
10M 61S
I've spent a fair bit of time looking through the documentation, other issues, and some source code, but I may still be missing something obvious.
The text was updated successfully, but these errors were encountered:
c9d832b
With the most recent dev version you can do:
> as.period(minutes(1000) + seconds(50) + seconds(11), unit = "hours") [1] "16H 41M 1S" > as.period(minutes(1000) + seconds(50) + seconds(11), unit = "minute") [1] "1001M 1S"
Sorry, something went wrong.
Works for me. Thanks!
No branches or pull requests
Is there a way to get it to equal
11M 01S
instead? Or a function to apply to10M 61S
to convert it to11M 01S
?I've spent a fair bit of time looking through the documentation, other issues, and some source code, but I may still be missing something obvious.
The text was updated successfully, but these errors were encountered: