我目前正在使用 R 中的 SPADE 算法挖掘序列模式。 SPADE 包含在arulesSequence
R 包中。我在 CentOS 6.3 64 位上运行 R。
作为练习,我尝试了http://en.wikibooks.org/wiki/Data_Mining_Algorithms_In_R/Sequence_Mining/SPADE中提供的示例
当我试图做
cspade(x, parameter = list(support = 0.4), control = list(verbose = TRUE))
R 说:
parameter specification:
support : 0.4
maxsize : 10
maxlen : 10
algorithmic control:
bfstype : FALSE
verbose : TRUE
summary : FALSE
preprocessing ... 1 partition(s), 0 MB [0.096s]
mining transactions ... 0 MB [0.066s]
reading sequences ...Error in asMethod(object) : 's' is not an integer vector
当我尝试在 Window 7 32bit 上运行 SPADE 时,它运行良好,没有任何错误。
有谁知道为什么会发生这样的错误?