-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Error in data_filter()
when rendering Rmd with lapply()
#379
Comments
data_filter()
when rendering Rmd with purrr::map
data_filter()
when rendering Rmd with lapply()
Also errors with |
Now that we have |
Simpler reprex: library(datawizard)
lapply(1, \(x) {
dat <- data.frame() # dataset doesn't matter here
test <- c("a", "b", "c")
x <- "a"
data_filter(dat, x %in% test)
})
#> Error: Filtering did not work. Please check the syntax of your conditions. Created on 2023-09-30 with reprex v2.0.2 |
The problem is that the Line 209 in ec6a9ce
We should probably do something similar but this doesn't seem so simple. Also, the fact that |
Reprex:
lapply("vignettes/reprex.Rmd", rmarkdown::render)
Originally posted by @etiennebacher in easystats/easystats#356 (comment)
The text was updated successfully, but these errors were encountered: