Writing rules generated by Apriori

前端 未结 3 772
时光取名叫无心
时光取名叫无心 2021-02-05 11:47

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

3条回答
  •  梦如初夏
    2021-02-05 12:44

    Another way to achieve that would be:

    write(rules_1,
          file = "association_rules.csv",
          sep = ",",
          quote = TRUE,
          row.names = FALSE)
    

提交回复
热议问题