I'm using tidytext packages for n grams text mining. I tried on 2 columns of texts, n grams (bigrams) function is working well for one but 0 obs returned for the other one. 2 columns from same resource so no diff with format but just diff content. Anyone knows why?
codes:
result=unnest_tokens(table,bigrams,txt,token="ngrams",n=2)