tf2doc {chinese.misc} | R Documentation |
Transform Terms and Frequencies into a Text
Description
This function is simply a wrapper of rep
, but allows different structures of input.
For rewriting more texts in the same time, see m2doc
.
Usage
tf2doc(term, num)
Arguments
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 |
Value
a character vector. Terms are pasted with a space.
Examples
x <- matrix(c("coffee", "milk", "tea", "cola"), nrow = 2)
y <- factor(c(5:8))
tf2doc(x, y)
[Package chinese.misc version 0.2.3 Index]