powered by
Search a specific term inside a table of word frequencies.
TermFreqByWord(termFreqTable, word)
a table of words and frequencies.
a string you want to search within the table of words and frequencies.
a dataframe containing a list of words which matches with the word on the search, along with its frecuencies.
A table of words and its frequencies inside a text corpus or a document-term matrix can be obtained through TermFrequency function.
TermFrequency
# NOT RUN { data("KDCorpus") termFreqTable <- TermFrequency(KDCorpus) TermFreqByWord(termFreqTable = termFreqTable, word = "graph") # }
Run the code above in your browser using DataLab