search for: eclat

Displaying 5 results from an estimated 5 matches for "eclat".

Did you mean: ecdat
2011 Jun 03
2
Arules: R Crashes when running eclat with tidLists=TRUE
Hello, I'm using the eclat function of the arules package (1.0-6) for the identification of frequent itemsets. I need the tidLists, but if I set in the function tidLists=TRUE R crashes (Windows XP Professional SP3, 32 bit, R version 2.12.1 (2010-12-16), reproducible on two different computers) with two different error messag...
2013 Mar 09
2
grouping followed by finding frequent patterns in R
.... . . . . . there are 100 types of CIN (9079954,12441087,15246633,...) and respective TRN_TYP first of all, I want this data to be grouped into basket format: 9079954 1, 2, 3, 4, 5, .... 12441087 19, 14, 21, 3, 7, ... . . . and then apply eclat from arules package to find frequent patterns. 1) I ran the following code: file<-read.csv("D:/R/Practice/Data_Input_NUM.csv") file <- file[!duplicated(file),] eclat(split(file$TRN_TYP,file$CIN)) but it gave me the following error: Error in asMethod(object) : can not coerce list w...
2006 Jul 28
1
arules package: using image() deliveres unexpected results
...the package arules. Using an ordninary matrix works fine: image(matrix(rnorm(200), 10, 20), axes = FALSE, col=brewer.pal(9, "Blues") ) delivers an image with blue colors and no axes. Using an object of the class "associations" (arules package) does not work: image(items(ta.eclat), axes = FALSE, col=brewer.pal(9, "Blues") ) delivers an error message telling that the argument "col" matches to several formal arguments. image(items(ta.eclat), axes = FALSE) delivers no error message but draws axes, which clearly should not be the case In the source code o...
2006 Oct 05
0
a question on using arules package
...i put predictors and class ids together and tranform all of them into binary thus i got a binary matrix. When I build the rules from it, I subset the rules to 2 by defining rhs %in% "classid = 1" or "2". (Actually i can build rules from two seperate datasets (by classid) and use eclat to get most frequent itemset). Anyway, I am thinking to use "chisq" or something to test the differentiating power of "lhs" and look for the most powerful "lhs". But I just don't know how to do it. Maybe someone can explain to me about the structure of "rules...
2010 Feb 18
1
how to change number of itemes appeare in right-hand-side of the rule with apriori in R(arules)?
Hi All, I use arules library, and try to create an association rules for this transaction file: a,c,f,3,4,5 b,e,1,2,4 a,c,e,f,1,3,4,5 d,5 b,c,e,f,1,2,3,4 a,c,e,f,1,3,4,5 b,c,e,f,1,3,4 b,e,1,2,4 a,c,e,f,1,3,4,5 a,b,c,e,f,1,3,4 a,c,d,f,3,4,5 I want to get the rule such: {c,e,f}=> {3,4,5} I used this command: ar=apriori(tr, parameter=list(support=.4, confidence=0.8, maxlen=11), appearance