R/TermFreqByWord.R

Defines functions TermFreqByWord

Documented in TermFreqByWord

TermFreqByWord <-
function(termFreqTable, word) {
  TFByWord <- termFreqTable[grep(word, termFreqTable$Term), ]
  
  return(TFByWord)
}

Try the KDViz package in your browser

Any scripts or data that you put into this service are public.

KDViz documentation built on May 1, 2019, 6:34 p.m.