tm (version 0.6-2)

findAssocs: Find Associations in a Term-Document Matrix

Description

Find associations in a document-term or term-document matrix.

Usage

"findAssocs"(x, terms, corlimit) "findAssocs"(x, terms, corlimit)

Arguments

terms
a character vector holding terms.
corlimit
a numeric vector (of the same length as terms; recycled otherwise) for the (inclusive) lower correlation limits of each term in the range from zero to one.

Value

terms and contains a named numeric vector. Each vector holds matching terms from x and their rounded correlations satisfying the inclusive lower correlation limit of corlimit.

Examples

Run this code
data("crude")
tdm <- TermDocumentMatrix(crude)
findAssocs(tdm, c("oil", "opec", "xyz"), c(0.7, 0.75, 0.1))

Run the code above in your browser using DataLab