嗨,我需要这方面的帮助。当我把
我得到了这些错误。
但是,我正在尝试将它绘制在 knit html 文档上,我想要这样的东西:
我应该将什么作为参数传递给绘图函数???
library(arulesViz)
data("Groceries")
rules <- apriori(Groceries, parameter=list(support=0.001, confidence=0.5))
调整图形设备的高度
f <- function(height) {
pdf(tf <- tempfile(fileext = ".pdf"), height = height)
plot(rules, method="grouped")
dev.off()
shell.exec(tf)
}
f(5) # too small
f(10) # better height
或尝试使用交互式绘图
sel <- plot(rules, method="grouped", interactive=TRUE)