I would like to delete strings with duplicate words in it.
df <- c("delete delete strings with duplicate words", "delete strings with duplicate words")
#Looking for the following outcome
df <- c("delete strings with duplicate words")
I would like to delete strings with duplicate words in it.
df <- c("delete delete strings with duplicate words", "delete strings with duplicate words")
#Looking for the following outcome
df <- c("delete strings with duplicate words")
Thank you for your questions, "abc def ghi abc" types of strings also need to be removed.