此处的 rules 变量包含apriori函数确实生成的内容。它可以在 ArulesVis 软件包的 plot 函数中使用。 假设到目前为止,我有另一个正在使用的规则挖掘工具,并且我想将生成的规则数据框与AruleViw的plot函数一起使用,如何将该数据框强制转换为“ rules”类的对象。
仅供参考,我的数据框有3列:前项,结论,提升
谢谢
rules <- apriori(trans, parameter = list(supp = 0.1, conf = 0.1,maxlen=10))
plot(rules, method = "grouped", control = list(k = 50))