5 lines
97 B
R
5 lines
97 B
R
musoFilter <- function(text){
|
|
eval(parse(paste0("filter(.,",text,")"))) %>%
|
|
tbl_df
|
|
}
|