1

嗨,我需要这方面的帮助。当我把

在此处输入图像描述

我得到了这些错误。

但是,我正在尝试将它绘制在 knit html 文档上,我想要这样的东西:

在此处输入图像描述

我应该将什么作为参数传递给绘图函数???

4

1 回答 1

1
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)
于 2015-07-22T19:28:47.283 回答