I\'m working with some large transactions data. I\'ve been using read.transactions and apriori (parts of the arules package) to mine for frequent item pairings.
My probl
I found this post when struggling with writing my rules to excel. My solution is:
library(writexl) write_xlsx(as(rules_1, "data.frame"), "rules_1.xlsx")
It is much easier to read and report when it is in excel.