makebin(数据,文件)出错:'sid'无效

时间:2016-09-23 18:07:13

标签: r

我收到同样的错误“makebin中的错误(数据,文件):'sid'无效” 在下面的小数据集上运行cspade。我的transactionID和eventID都是按块顺序排列的(正如有人在另一篇文章中提到的那样)。所以我没有看到任何出错的原因。请让我知道可能是什么问题。

items             transactionID sequenceID    eventID
1  {item=/}                     1           1 1458565800
2  {item=/login}                2           2 1458565803
3  {item=/profile}              3           3 1458565811
4  {item=/shop_list}            4           4 1458565814
5  {item=/}                     5           1 1458565912
6  {item=/login}                6           2 1458565915
7  {item=/shop_list}            7           3 1458565918
8  {item=/}                     8           1 1458565802
9  {item=/login}                9           2 1458565808
10 {item=/profile}              10          3 1458565812
11 {item=/product}              11          4 1458565818
12 {item=/}                     12          1 1458565911
13 {item=/login}                13          2 1458565916
14 {item=/shop_list}            14          3 1458565922
15 {item=/profile}              15          4 1458565927
16 {item=/contact}              16          5 1458565929
17 {item=/profile}              17          6 1458565933

traffic  <- read.csv("C:\\buczaal1\\RProg\\web_traffic.csv")
traffic_data <- data.frame(item=traffic$Page)
traffic.tran <- as(traffic_data, "transactions")
transactionInfo(traffic.tran)$sequenceID <- traffic$Seq
transactionInfo(traffic.tran)$eventID <- traffic$Timestamp
frequent_pattern <- cspade(traffic.tran, parameter= list(support=0.3))

0 个答案:

没有答案