使用RStudio中的附加数据集,我收到以下错误消息:
Error in readLines(file, encoding = encoding) :
(converted from warning) line 1 appears to contain an embedded nul
在以下代码之后:
txn = read.transactions(file="ItemList22.xlsx", rm.duplicates=TRUE, format="basket",sep=",",cols=1,quote = "\"'", skip = 0,encoding="unknown");
我正在尝试使用'arules'包为Apriori分析设置数据。根据其他StackOverflow帖子和CRAN文档,我尝试在上面的代码中添加编码选项......但它们似乎不起作用。
我做错了什么?