You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may be related to #2432 .
Fairly simple operation, filtering a data.frame by a column named via a variable using rlang's !! with Dates/POSIXct causes the following error: Error in filter_impl(.data, quo) : Evaluation error: character string is not in a standard unambiguous format.
I think you don't use !! correctly here and the error is expected. !!td_nm result in a string and this won't work in filter. I see too correct use here:
Using filter_at() variant as your column name is a string
Using sym() on td_nm to create a symbol from a string and the !! on this
Here examples for those solutions
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
lockbot
locked and limited conversation to collaborators
Jan 27, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This may be related to #2432 .
Fairly simple operation, filtering a data.frame by a column named via a variable using rlang's !! with Dates/POSIXct causes the following error:
Error in filter_impl(.data, quo) : Evaluation error: character string is not in a standard unambiguous format.
The text was updated successfully, but these errors were encountered: