我目前正在学习R中的关联规则 以下是我的代码
library(arules)
library(arulesViz)
test[] <- lapply(test, factor)
rules <- apriori(test)
summary(rules)
plot(rules)
当我尝试使用错误绘制代码时,代码会失败:
错误:包'arules'1.1-9已加载,但'arulesViz'需要&gt; = 1.2.0
另外:警告信息: 包'arulesViz'是在R 3.1.3版本下构建的
我尝试更新我的所有套餐,但我被告知一切都是最新的
有没有人见过这个?
由于
答案 0 :(得分:2)
你在运行什么版本的R?可能你需要更新R;最新版本的arules是1.4.1。