作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用文本挖掘 tm
R 的库。
我在 R 版本 3.3.1 上运行
我有这个代码:
lda <- LDA(docterm,k = 3,method = 'Gibbs')
lda.topics <- as.matrix(topics(lda))
lda.terms <- as.matrix(terms(lda,5))
topic.terms <- c()
topic.terms[1] <- paste(c(lda.terms[,1],'\n'),collapse = '\n')
topic.terms[2] <- paste(c(lda.terms[,2],'\n'),collapse = '\n')
topic.terms[3] <- paste(c(lda.terms[,3],'\n'),collapse = '\n')
tw.df <- tw.df %>%
mutate(topico = topic.terms[lda.topics])
source file.r
运行它时
Error in eval(expr, envir, enclos) : could not find function "LDA"
tm
安装包。
最佳答案
尝试安装和使用包“topicmodels”。
install.packages('topicmodels')
关于r - 在 R 中加载 LDA 函数时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40120841/
我是一名优秀的程序员,十分优秀!