我正试图从我的交易数据中找出关联规则。
文件格式如下:
TransactionID | ProductID
----------------------------
3716280 337
3716280 1512
3714018 963
我使用RCmdr导入数据并将其保存为数据集。我尝试使用以下命令再次将其作为事务读取:
txn <- read.transactions(transactions, rm.duplicates= FALSE, format=”single”,sep=””,cols=c(1,2));
我收到错误:ERROR: < text>
我刚刚开始学习R,有人可以帮忙吗?
谢谢! Vinoth