Is there a possibility to use filtering in dplyr and use negative of like operator? Something like (which does not work):
my_df %>%
filter(text !%like% "dirty talk")
just like this:
my_df %>%
filter(!text %like% "dirty talk")
Since placing the exclamation like so makes the statement not