I am trying to understand whether I can pass a file with a data dictionary into filter function ?
This is my code:
dplyr::filter(username != 'kgrf808' & username != 'kkwf800' & username != 'kpzl632')
Yet, instead of passing the ''kgrf808', etc , I want to pass a column of a csv file, containing all these id's so that it filters it automatically. I may end up with 10 codes.
Is this somehow possible? I want to keep tidyverse functionality as much as I can.