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
library(magrittr) library(lubridate)
as.POSIXct("2024-01-08 14:09:59.899") %>% round_date(., unit="0.1 sec") %>% as.character as.POSIXct("2024-01-08 14:09:59.999") %>% round_date(., unit="1 sec") %>% as.character
as.POSIXct("2024-01-08 14:09:59.999") %>% round_date(., unit="0.1 sec") %>% as.character
the result I think: 2024-01-08 14:10:00.0 the result shows: 2024-01-08 14:09:59.9
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is an example
library(magrittr)
library(lubridate)
Correctly work
as.POSIXct("2024-01-08 14:09:59.899") %>% round_date(., unit="0.1 sec") %>% as.character
as.POSIXct("2024-01-08 14:09:59.999") %>% round_date(., unit="1 sec") %>% as.character
Not work as I think
as.POSIXct("2024-01-08 14:09:59.999") %>% round_date(., unit="0.1 sec") %>% as.character
the result I think: 2024-01-08 14:10:00.0
the result shows: 2024-01-08 14:09:59.9
The text was updated successfully, but these errors were encountered: