I have an error I don't know how to reproduce here.
I have a simple filter statement like: `data <- data %>% filter(v1==35). If I run the code, it works properly.
When I use build in a bookdown project, I get the following message:
"Quitting from lines 1235-1248 (lab-notes.Rmd)
Error in filter_impl(.data, quo) :
Evaluation error: object 'UF' not found."
I've been working on this project for a while. It is the first time I have this problem. What makes it even more strange is that I have a couple of filter statements before this one that works just fine.
The problem is not specific to filter, though. I used old cold style data[data$v1==35] to skip the problem since I have a hard deadline coming up, but then I get another error message in a mutate statement.