| tf2doc {chinese.misc} | R Documentation |
This function is simply a wrapper of rep, but allows different structures of input.
For rewriting more texts in the same time, see m2doc.
tf2doc(term, num)
term |
terms that you want to rewrite into a text. A character vector is preferred, but
matrix, list, data frame are also OK. |
num |
frequencies of terms in |
a character vector. Terms are pasted with a space.
x <- matrix(c("coffee", "milk", "tea", "cola"), nrow = 2)
y <- factor(c(5:8))
tf2doc(x, y)