Evaluate filter expression for dplyr when DBI SQL table is used fails
I have a SQLite connection where I want to query user-given filters, for example a user might say: e = "hp > 250" and I want to execute this on the database. If I have a local tibble, I can evaluate the string with data |> filter(eval(parse(text = e))), but when I have a tbl/SQL… Read More Evaluate filter expression for dplyr when DBI SQL table is used fails