Filtering a tibble in R by list of strings and returning all records that end with the strings in the list
I have a huge data frame. One of the columns in the data frame is an email address. In addition, I have a vector with domain extensions (for example: c(".ac",".ad",".ae",".af",".ag",".ai") – a total length of 259 extensions.) I want to filter my data frame to contain records whose email ends with one of the strings… Read More Filtering a tibble in R by list of strings and returning all records that end with the strings in the list