Skip to content
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

round_date in 0.1 sec doesn't work correctly #1152

Open
EdsterShih opened this issue Jan 16, 2024 · 0 comments
Open

round_date in 0.1 sec doesn't work correctly #1152

EdsterShih opened this issue Jan 16, 2024 · 0 comments

Comments

@EdsterShih
Copy link

EdsterShih commented Jan 16, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant