我想用包tau在R中创建一个双字词wordcloud。
我在列表中将数字作为数字。所以我将其转换为矩阵,但没有列名称。我希望在数据帧表中使用它,以便可以用它创建一个双字WordWord。
请在下面找到我的代码并提出解决方法。
library(tau)
speech1 = Corpus(VectorSource(speech))
myDTM = TermDocumentMatrix(speech1, control = list(minWordLength = 1))
bigrams = textcnt(speech1, n = 2, method = "string")
bigrams = bigrams[order(bigrams, decreasing = TRUE)
n = as.matrix(bigrams)
请提出一种如何在bigram上创建wordcloud的方法。无法使用weka软件包