У меня есть DF вроде следующего с примерно 33000 строк:
tibble(ID = c(1,2,3), desc = c("This is a description.", "Also a description!","This is yet another desciption"))
Я хотел бы посчитать каждое слово для всех строк, чтобы получить результирующий df, как:
tibble(word = c("this", "is", "a", "description", "also", "yet", "another"), count = c(2,2,2,3,1,1,1))