TermFreqByWord: Search a specific term inside a table of word frequencies

Description Usage Arguments Value Author(s) See Also Examples

View source: R/TermFreqByWord.R

Description

Search a specific term inside a table of word frequencies.

Usage

1
TermFreqByWord(termFreqTable, word)

Arguments

termFreqTable

a table of words and frequencies.

word

a string you want to search within the table of words and frequencies.

Value

a dataframe containing a list of words which matches with the word on the search, along with its frecuencies.

Author(s)

Andres Palacios anfpalacioscl@unal.edu.co

See Also

A table of words and its frequencies inside a text corpus or a document-term matrix can be obtained through TermFrequency function.

Examples

1
2
3
4
data("KDCorpus")
termFreqTable <- TermFrequency(KDCorpus)

TermFreqByWord(termFreqTable = termFreqTable, word = "graph")

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

Related to TermFreqByWord in KDViz...