arulesViz "graph" 图没有显示连接
arulesViz "graph" plot doesn't show the connections
我正在使用 arulesViz 库绘制一些关于推荐系统的图表。
我有一些规则,我想在图表中绘制它们。
plot(regras, method = "graph", control = list(type = "itens"))
这是我得到的:
这似乎是 arulesViz 中的错误。但是,有一个解决方法。
由于您没有提供任何可用作示例的数据,我将使用文档中示例的变体。仅使用基本图显示没有像您问题中那样的链接。
data(Groceries)
rules <- apriori(Groceries, parameter=list(support=0.002, confidence=0.8))
plot(rules, method="graph")
但是,如果您设置 alpha=1
,链接将会显示。
plot(rules, method="graph", alpha = 1)
我正在使用 arulesViz 库绘制一些关于推荐系统的图表。
我有一些规则,我想在图表中绘制它们。
plot(regras, method = "graph", control = list(type = "itens"))
这是我得到的:
这似乎是 arulesViz 中的错误。但是,有一个解决方法。
由于您没有提供任何可用作示例的数据,我将使用文档中示例的变体。仅使用基本图显示没有像您问题中那样的链接。
data(Groceries)
rules <- apriori(Groceries, parameter=list(support=0.002, confidence=0.8))
plot(rules, method="graph")
但是,如果您设置 alpha=1
,链接将会显示。
plot(rules, method="graph", alpha = 1)