我想知道是否可以在不使用的情况下构建TermdocumentMatrix 包tm。
我正在考虑将两个for循环与grep结合使用,但不幸的是我无法创建有用的东西。
matrix <- matrix(, nrow=length(lvector), ncol=length(lvector))
for(i in 1:length(lvector))
{
for(j in 1:length(l))
{
lijst <- grep(lvector[i],l[j])
if (length(lijst)==0)
{
matrix[i,j] == 0
}
else
{
matrix[i,j] == 1
}
}
}
事先提前
答案 0 :(得分:0)
FWIW,这是一种方式:
get.dtm <- function(txts) {
require(plyr)
dtm <- do.call(rbind.fill.matrix, lapply(txts, function(txt) t(table(scan(file = textConnection(txt), what = "character", quiet = TRUE)))))
dtm[is.na(dtm)] <- 0
return(dtm)
}
get.dtm(c("this is a text text", "this is just another text"))
# a is text this another just
# [1,] 1 1 2 1 0 0
# [2,] 0 1 1 1 1 1