-
Notifications
You must be signed in to change notification settings - Fork 2.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
Clash between dpylr::filter and lubridate #2520
Comments
When using
However if we see the structure of the str(data_dplyr)
This looks like a bug in dplyr |
This is a problem with With simple types it works: dplyr::slice_(iris, 1)
In this case does not: data <- data.frame(periods = hms(c("00:00:00", "01:00:00")))
dplyr::slice_(data, 1)
|
Duplicate of #2432 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I subset a dataframe with respect to a lubridate object using dplyr::filter I get unexpected results that do not occur when I subset using base commands.
The text was updated successfully, but these errors were encountered: