Mining Interesting Infrequent and Frequent Itemsets Based on Minimum Correlation Strength

Size: px
Start display at page:

Download "Mining Interesting Infrequent and Frequent Itemsets Based on Minimum Correlation Strength"

Transcription

1 Mining Interesting Infrequent and Frequent Itemsets Based on Minimum Correlation Strength Xiangjun Dong School of Information, Shandong Polytechnic University Jinan , China Abstract. IMLMS (interesting MLMS (Multiple Level Minimum Supports)) model, which was proposed in our previous works, is designed for pruning uninteresting infrequent and frequent itemsets discovered by MLMS model. One of the pruning measures used in IMLMS model, interest, can be described as follows: to two disjoint itemsets A,B, if interest(a,b)= s(a B) - s(a)s(b) <mi, then A B is recognized as uninteresting itemset and is pruned, where s( ) is the support and mi a minimum interestingness threshold. This measure, however, is a bit difficult for users to set the value mi because interest (A,B) highly depends on the values of s( ). So in this paper, we propose a new measure, MCS (minimum correlation strength) as a substitute. MCS, which is based on correlation coefficient, has better performance than interest and it is very easy for users to set its value. The theoretical analysis and experimental results show the validity of the new measure. Keywords: infrequent itemset, frequent itemset, negative association rule, multiple minimum supports, prune, correlation coefficient. 1 Introduction As we have known, the traditional association rule is the form A B, whose support (s) and confidence (c) meet a minimum support (ms) threshold and a minimum confidence (mc) respectively. This is the famous support-confidence framework [1]. Recently, how to mine negative association rules (NARs) at the forms A B, A B and A B has been attracted attention and how to mine infrequent itemsets has also been attracted much attention because many valued NARs can be discovered from infrequent itemsets [2, 3, 4, 5, 6]. In ref. [5], a MLMS (Multiple Level Minimum Supports) model, which assigns different minimum supports to itemsets with different lengths, was proposed to discover infrequent itemsets and frequent itemsets simultaneously. In order to prune those uninteresting itemsets discovered by the MLMS model, in ref. [6], an IMLMS (Interesting MLMS) model was proposed later by using the similar pruning measures as that in [2]. One of the pruning measures used in IMLMS model, interest, can be described as follows: to two disjoint itemsets A,B, if interest(a,b)= s(a B) - s(a)s(b) <mi, then A B is recognized as uninteresting itemset and is pruned, where s( ) is the support H. Deng et al. (Eds.): AICI 2011, Part I, LNAI 7002, pp , Springer-Verlag Berlin Heidelberg 2011

2 438 X. Dong and mi a minimum interestingness threshold. This measure, however, is a bit difficult for users to set the value of mi because interest (A, B) highly depends on the values of s( ). In fact, many interesting measures have been proposed in association rules mining, such as interestingness, chi-squared test, correlation coefficient, Laplace, Gini-index, Piatetsky-Shapiro, Conviction and so on, and many researches have discussed how to select the right measure [7, 8, 9, 10, 11]. Among these measures, correlation coefficient is a good one and the authors in [11] used it to mine negative association rules. In this paper, we also use correlation coefficient to replace the measure interest which was used in IMLMS model to improve performance, and we call the new measure as minimum correlation strength (MCS), denoted as ρ MCS. That is, to two disjoint itemsets A, B, if the correlation coefficient of A, B, ρ(a, B), is less than a given minimum correlation strength ρ MCS, then A B is recognized as uninteresting itemset and is pruned. Later discussion will show that the measure MCS has better performance and is easier to be set than interest. The main contributions of this paper are as follows: 1. We propose a new pruning measure named MCS to improve the performance of IMLMS model. 2. We demonstrate the validity of the measure MCS by theoretical analysis and experiments. The rest of the paper is organized as follows: Section 2 discusses the MCS pruning method. Section 3 is the experiments and section 4 is conclusions. 2 MCS Pruning Method 2.1 Review of the IMLMS Model Let I={i 1, i 2,, i n } be a set of n distinct literals called items, and TD a transaction database of variable-length transactions over I, and the number of transactions in TD is denoted as TD. Each transaction contains a set of item i 1, i 2,,i m I and each transaction is associated with a unique identifier TID. A set of distinct items from I is called an itemset. The number of items in an itemset A is the length of the itemset, denoted by len(a). An itemset of length k are referred to as k-itemset. Each itemset has an associated statistical measure called support, denoted by s. For an itemset A I, s(a)=a.count / TD, where A.count is the number of transactions containing itemsets A in TD. The support of a rule A B is denoted as s(a B) or s(a B), where A, B I,and A B =Φ. The confidence of the rule A B is defined as the ratio of s(a B) over s(a), i.e., c(a B) = s(a B) / s( A). In MLMS model, different minimum supports are assigned to itemsets with different lengths. Let ms(k) be the minimum support of k-itemsets (k=1,2,,n), ms(0) be a threshold for infrequent itemsets, ms(1) ms(2),, ms(n) ms(0)>0, for any itemset A, if s(a) ms(len(a)), then A is a frequent itemset; and if s(a) < ms(len(a)) and s(a) ms(0), then A is an infrequent itemset. The IMLMS model use the modified pruning method used in [2] to prune uninteresting frequent itemsets by the equation 1-3, and to prune uninteresting infrequent itemsets by the equation 4-6.

3 Mining Interesting Infrequent and Frequent Itemsets Based on MCS 439 M is a frequent itemset of potential interest in the MLMS model if fipi(m) = s(m) ms(len(m)) ( A, B: A B = M ) fipis(a, B ), (1) where fipis(a, B)=(A B =Φ) ( f (A,B, ms(len(a B)), mi) = 1), (2) s( A B) + interest ( A, B) ( ms ( len( A B)) + mi ) + 1 f (A, B, ms(len(a B)), mi)= s( A B) ms( len ( A B)) + interest ( A, B) mi + 1 (3) N is an infrequent itemset of potential interest if iipi(n) = s(n) < ms(len(n)) s(n) ms(0) (4) ( A, B: A B = N ) iipis(a, B), where iipis(a, B) =(A B =Φ) ( f (A,B, ms(0), mi) = 1), (5) f (A, B, ms(0), mi) = s( A B) + interest( A, B) ( ms(0) + mi) + 1 s( A B) ms(0) + interest( A, B) mi + 1. (6) 2.2 MCS Pruning Method In equation 1-6, interest(a,b) is an interestingness measure and interest(a,b)= s(a B) - s(a)s(b), mi is a minimum interestingness threshold given by users or experts. This measure is first proposed by Piatetsky-Shapiro [12]. It s a good measure to prune uninteresting itemsets in some cases, but it is a bit difficult for users to set the value of mi because interest (A,B) changes with the values of s( ). Take the data in table 1 for example, the maximum value of interest(a,b) is when s(a), s(b)=0.01, while the maximum value of interest(a,b) is 0.09 when s(a), s(b)=0.1, how to give the value of mi? In a database, with the length of an itemset increasing, the support of the itemset decreases. So using a single minimum interest is unfair to all itemsets with different supports. Perhaps you may say use a changeable mi to itemsets with different supports, maybe this approach works, but now the problem becomes how to change the value of mi is fair? In fact, the essence of the Piatetsky-Shapiro measure interest(a,b)= s(a B) - s(a)s(b) is that the itemsets A,B is uninteresting if s(a B) - s(a)s(b) 0, i.e., if the correlation of itemsets A,B is not strong enough, itemsets A,B is not interesting and can be pruned. So we can use the measure Correlation coefficient as a substitute. Correlation coefficient measures the degree of linear dependency between a pair of random variables. The correlation coefficient between A and B can be written as ρ(a, B) = sa ( B)- sasb ( ) ( ), (7) sa ( )(1- sa ( )) sb ( )(1- sb ( )) where s(*) 0, 1 [3, 11]. The range of ρ(a, B) is between 1 and +1.The correlation coefficient and its strength are discussed in [13]. According to this book, a variable α (0 α 1) is used to express the correlation strength. α=0.5, the strength is large, 0.3, moderate, and 0.1, small. This means that the itemsets whose correlation is less than 0.1 is unvalued. In real application, the value of α can be given by users or experts.

4 440 X. Dong Table 1. Data for comparison between interest(a,b) and ρ(a, B) (a) (b) s(a) s(b) s(a B) interest(a,b) ρ(a,b) s(a) s(b) s(a B) interest(a,b) ρ(a, B) Now let s compare interest(a,b) and ρ(a, B). The data in table 1 demonstrate the cases that the value of s(a), s(b) is 0.01 and 0.1. The range of interest(a,b) is [0.0001,0.0099] in table 1 (a) when s(a), s(b) is 0.01, [0,0.09] in table 1 (b) when s(a), s(b) is 0.1. This means the range of interest(a,b) is greatly influenced by the value of s(a) and s(b). While the range of ρ(a,b) is [0,1] either in table 1 (a) or in table 1 (b). This means the range of ρ(a,b) is only influenced by the correlation strength of A and B, not by the value of s(a) and s(b). Fig. 1 (a), (b) shows the changes of the data in table 1 (a), (b) respectively. From figure 1 we can see the changes of the range of interest(a,b) and ρ(a, B) more clearly. Although the data in table 1 only show the case when s(a), s(b) is small, we will get the same result when s(a), s(b) is V$ V% V$ % LQWHUHVW$% _²$%_ Fig. 1. The changes of the data in table 1 (a), (b) large or when one is small, the other is large. So we can set a minimum correlation strength ρ MCS (0 ρ MCS 1) as a constraint to prune less correlative itemsets. In details, for itemsets A, B I, A B =Φ, if ρ(a, B) <ρ MCS, then A B is uninteresting and is pruned. This is the MCS pruning method. We don t need to modify the equation 1-6, the only things we do are: 1) to replace interest(a,b)= s(a B) - s(a)s(b) with interest(a,b)= ρ(a,b) ; and 2) to replace mi with ρ MCS. We don t need to modify the algorithm Apriori_IMLMS either, but we change the algorithm name to Apriori_IMLMS_MCS to distinguish the algorithm name. V$ V% V$ % LQWHUHVW$% _²$%_

5 Mining Interesting Infrequent and Frequent Itemsets Based on MCS Algorithm Algorithm Apriori_IMLMS_MCS Input: TD: Transaction Database; ms(k)(k=0,1,,n): minimum support threshold; Output: FIS: set of interesting frequent itemsets; infis: set of interesting infrequent itemsets; (1) FIS=Φ; infis=φ; (2) temp 1 = {A A 1-itemsets,s(A) ms(0)}; FIS 1 = {A A temp 1 s(a) ms(1)}; infis 1 = temp 1 -FIS 1 ; (3) for (k=2;temp k 1 Φ;k++) do begin (3.1) C k = apriori_gen(temp k 1, ms(0)); (3.2) for each transaction t TD do begin /*scan transaction database TD*/ C t =subset(c k, t); for each candidate c C t c.count++; end (3.3) temp k = {c c C k (c.count/ TD ) ms(0)}; FIS k = {A A temp k A.count/ TD ms(k)}; infis k = temp k FIS k (3.4) /*prune all uninteresting itemsets in FIS k */ for each itemset M in FIS k do if NOT (fipi(m)) then FIS k =FIS k { M } (3.5)/*prune all uninteresting itemsets in infis k */ for each itemset N in infis k do if NOT (iipi(n)) then infis k =infis k { N } end (4) FIS = FIS k ; infis = infis k ; (5) return FIS and infis; The explanation of the algorithm Apriori_IMLMS_MCS can be referred to [6]. 3 Experiments The real dataset records areas of that each user visited in a oneweek timeframe in February Summary statistical information of the dataset is: training instances, 5000 testing instances, 294 attributes and the mean area visits per case is 3.0 ( /CIS788_dm_proj.htm# datasets).

6 442 X. Dong Table 2. The number of the interesting infis and the interesting FIS with different mi. (ms(1)=0.025, ms(2)=0.02, ms(3)=0.017, ms(4)=0.013, ms(0)=0.01) ρ MCS k=1 k=2 k=3 k=4 Total 0 FIS infis FIS infis FIS infis FIS infis FIS infis FIS infis Table 2 shows the number of the interesting infrequent itemsets and the interesting frequent itemsets with different ρ MCS when ms(1)=0.025, ms(2)=0.02, ms(3)=0.017, ms(4)=0.013, and ms(0)=0.01. From table 4 we can see that the total number of FIS and infis is 150, 121, 95, 53, 39, 25 when ρ MCS =0, 0.05, 0.1, 0.2, 0.25, 0.3 respectively. With ρ MCS increasing, the total number decreases obviously. Table 4 also gives the number of FIS and infis in different k. These data show that the MCS pruning method can efficiently prune the uninteresting itemsets as the IMLMS model. 4 Conclusions In order to prune the uninteresting itemsets discovered by MLMS model, IMLMS model was proposed by using a pruning measure interest(a,b)= s(a B) - s(a)s(b) <mi. This measure, however, is not easy enough for users to set the value of mi because interest (A,B) highly depends on the values of s( ), as discussed in section 2.2. So in this paper, a new measure, minimum correlation strength MCS, has been proposed as a substitute. If ρ(a, B) <ρ MCS, then A B is uninteresting and is pruned. The theoretical analysis and experimental results show that MCS has better performance than interest and its value is very easy to be set. Acknowledgements. This work was partly supported by Excellent Young Scientist Foundation of Shandong Province of China under Grant No. 2006BS References 1. Agrawal, R., Imielinski, T., Swami, A.: Mining Association Rules between Sets of Items in Large Database. In: Proceedings of the 1993 ACM SIGMOD International Conference on Management of Data, pp ACM Press, New York (1993)

7 Mining Interesting Infrequent and Frequent Itemsets Based on MCS Wu, X., Zhang, C., Zhang, S.: Efficient Mining of both Positive and Negative Association Rules. ACM Transactions on Information Systems, (2004) 3. Dong, X., Niu, Z., Shi, X., Zhang, X., Zhu, D.: Mining Both Positive and Negative Association Rules from Frequent and Infrequent Itemsets. In: Alhajj, R., Gao, H., Li, X., Li, J., Zaïane, O.R. (eds.) ADMA LNCS (LNAI), vol. 4632, pp Springer, Heidelberg (2007) 4. Dong, X., Wang, S., Song, H.: 2-level Support based Approach for Mining Positive & Negative Association Rules. Computer Engineering, (2005) 5. Dong, X., Zheng, Z., Niu, Z., Jia, Q.: Mining Infrequent Itemsets based on Multiple Level Minimum Supports. In: Proceedings of the Second International Conference on Innovative Computing, Information and Control (ICICIC 2007), Kumamoto (2007) 6. Dong, X., Niu, Z., Zhu, D., Zheng, Z., Jia, Q.: Mining Interesting Infrequent and frequent Itemsets based on MLMS Model. In: Tang, C., Ling, C.X., Zhou, X., Cercone, N.J., Li, X. (eds.) ADMA LNCS (LNAI), vol. 5139, pp Springer, Heidelberg (2008) 7. Tan, P.-N., Kumar, V., Srivastava, J.: Selecting the Right Interestingness Measure for Association Patterns. In: Proceedings of the 8th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, Edmonton (CA), pp (2002) 8. Tan, P.-N., Kumar, V., Srivastava, J.: Selecting the right objective measure for association analysis. Information Systems 29, (2004) 9. Hilderman, R.J., Hamilton, H.J.: Applying Objective Interestingness Measures in Data Mining Systems. In: Zighed, D.A., Komorowski, J., Żytkow, J.M. (eds.) PKDD LNCS (LNAI), vol. 1910, pp Springer, Heidelberg (2000) 10. Geng, L., Hamilton, H.J.: Interestingness Measures for Data Mining: A Survey. ACM Computing Surveys 38(3), Article 9 (2006) 11. Antonie, M.-L., Zaïane, O.: Mining Positive and Negative Association Rules: An Approach for Confined Rules. In: Boulicaut, J.-F., Esposito, F., Giannotti, F., Pedreschi, D. (eds.) PKDD LNCS (LNAI), vol. 3202, pp Springer, Heidelberg (2004) 12. Piatetsky-Shapiro, G.: Discovery, analysis, and presentation of strong rules. In: Knowledge Discovery in Databases, pp AAAI Press/MIT Press (1991) 13. Cohen, J.: Statistical Power Analysis for the Behavioral Sciences, 2nd edn. Lawrence Erlbaum, New Jersey (1988)

Mining Positive and Negative Fuzzy Association Rules

Mining Positive and Negative Fuzzy Association Rules Mining Positive and Negative Fuzzy Association Rules Peng Yan 1, Guoqing Chen 1, Chris Cornelis 2, Martine De Cock 2, and Etienne Kerre 2 1 School of Economics and Management, Tsinghua University, Beijing

More information

NEGATED ITEMSETS OBTAINING METHODS FROM TREE- STRUCTURED STREAM DATA

NEGATED ITEMSETS OBTAINING METHODS FROM TREE- STRUCTURED STREAM DATA NEGATED ITEMSETS OBTAINING METHODS FROM TREE- STRUCTURED STREAM DATA JURYON PAIK Pyeongtaek University, Department of Digital Information and Statistics, Gyeonggi-do 17869, South Korea E-mail: jrpaik@ptu.ac.kr

More information

Encyclopedia of Machine Learning Chapter Number Book CopyRight - Year 2010 Frequent Pattern. Given Name Hannu Family Name Toivonen

Encyclopedia of Machine Learning Chapter Number Book CopyRight - Year 2010 Frequent Pattern. Given Name Hannu Family Name Toivonen Book Title Encyclopedia of Machine Learning Chapter Number 00403 Book CopyRight - Year 2010 Title Frequent Pattern Author Particle Given Name Hannu Family Name Toivonen Suffix Email hannu.toivonen@cs.helsinki.fi

More information

Guaranteeing the Accuracy of Association Rules by Statistical Significance

Guaranteeing the Accuracy of Association Rules by Statistical Significance Guaranteeing the Accuracy of Association Rules by Statistical Significance W. Hämäläinen Department of Computer Science, University of Helsinki, Finland Abstract. Association rules are a popular knowledge

More information

Selecting a Right Interestingness Measure for Rare Association Rules

Selecting a Right Interestingness Measure for Rare Association Rules Selecting a Right Interestingness Measure for Rare Association Rules Akshat Surana R. Uday Kiran P. Krishna Reddy Center for Data Engineering International Institute of Information Technology-Hyderabad

More information

Mining negative sequential patterns from infrequent positive sequences with 2-level multiple minimum supports

Mining negative sequential patterns from infrequent positive sequences with 2-level multiple minimum supports Filomat 32:5 (2018), 1875 1885 https://doi.org/10.2298/fil1805875q Published by Faculty of Sciences and Mathematics, University of Niš, Serbia Available at: http://www.pmf.ni.ac.rs/filomat Mining negative

More information

Mining Class-Dependent Rules Using the Concept of Generalization/Specialization Hierarchies

Mining Class-Dependent Rules Using the Concept of Generalization/Specialization Hierarchies Mining Class-Dependent Rules Using the Concept of Generalization/Specialization Hierarchies Juliano Brito da Justa Neves 1 Marina Teresa Pires Vieira {juliano,marina}@dc.ufscar.br Computer Science Department

More information

Association Rule. Lecturer: Dr. Bo Yuan. LOGO

Association Rule. Lecturer: Dr. Bo Yuan. LOGO Association Rule Lecturer: Dr. Bo Yuan LOGO E-mail: yuanb@sz.tsinghua.edu.cn Overview Frequent Itemsets Association Rules Sequential Patterns 2 A Real Example 3 Market-Based Problems Finding associations

More information

CSE 5243 INTRO. TO DATA MINING

CSE 5243 INTRO. TO DATA MINING CSE 5243 INTRO. TO DATA MINING Mining Frequent Patterns and Associations: Basic Concepts (Chapter 6) Huan Sun, CSE@The Ohio State University Slides adapted from Prof. Jiawei Han @UIUC, Prof. Srinivasan

More information

Chapter 6. Frequent Pattern Mining: Concepts and Apriori. Meng Jiang CSE 40647/60647 Data Science Fall 2017 Introduction to Data Mining

Chapter 6. Frequent Pattern Mining: Concepts and Apriori. Meng Jiang CSE 40647/60647 Data Science Fall 2017 Introduction to Data Mining Chapter 6. Frequent Pattern Mining: Concepts and Apriori Meng Jiang CSE 40647/60647 Data Science Fall 2017 Introduction to Data Mining Pattern Discovery: Definition What are patterns? Patterns: A set of

More information

Data Mining. Dr. Raed Ibraheem Hamed. University of Human Development, College of Science and Technology Department of Computer Science

Data Mining. Dr. Raed Ibraheem Hamed. University of Human Development, College of Science and Technology Department of Computer Science Data Mining Dr. Raed Ibraheem Hamed University of Human Development, College of Science and Technology Department of Computer Science 2016 2017 Road map The Apriori algorithm Step 1: Mining all frequent

More information

CS 584 Data Mining. Association Rule Mining 2

CS 584 Data Mining. Association Rule Mining 2 CS 584 Data Mining Association Rule Mining 2 Recall from last time: Frequent Itemset Generation Strategies Reduce the number of candidates (M) Complete search: M=2 d Use pruning techniques to reduce M

More information

Mining Strong Positive and Negative Sequential Patterns

Mining Strong Positive and Negative Sequential Patterns Mining Strong Positive and Negative Sequential Patter NANCY P. LIN, HUNG-JEN CHEN, WEI-HUA HAO, HAO-EN CHUEH, CHUNG-I CHANG Department of Computer Science and Information Engineering Tamang University,

More information

COMP 5331: Knowledge Discovery and Data Mining

COMP 5331: Knowledge Discovery and Data Mining COMP 5331: Knowledge Discovery and Data Mining Acknowledgement: Slides modified by Dr. Lei Chen based on the slides provided by Jiawei Han, Micheline Kamber, and Jian Pei And slides provide by Raymond

More information

Chapter 2 Quality Measures in Pattern Mining

Chapter 2 Quality Measures in Pattern Mining Chapter 2 Quality Measures in Pattern Mining Abstract In this chapter different quality measures to evaluate the interest of the patterns discovered in the mining process are described. Patterns represent

More information

Standardizing Interestingness Measures for Association Rules

Standardizing Interestingness Measures for Association Rules Standardizing Interestingness Measures for Association Rules arxiv:138.374v1 [stat.ap] 16 Aug 13 Mateen Shaikh, Paul D. McNicholas, M. Luiza Antonie and T. Brendan Murphy Department of Mathematics & Statistics,

More information

Regression and Correlation Analysis of Different Interestingness Measures for Mining Association Rules

Regression and Correlation Analysis of Different Interestingness Measures for Mining Association Rules International Journal of Innovative Research in Computer Scien & Technology (IJIRCST) Regression and Correlation Analysis of Different Interestingness Measures for Mining Association Rules Mir Md Jahangir

More information

Modified Entropy Measure for Detection of Association Rules Under Simpson's Paradox Context.

Modified Entropy Measure for Detection of Association Rules Under Simpson's Paradox Context. Modified Entropy Measure for Detection of Association Rules Under Simpson's Paradox Context. Murphy Choy Cally Claire Ong Michelle Cheong Abstract The rapid explosion in retail data calls for more effective

More information

DATA MINING - 1DL360

DATA MINING - 1DL360 DATA MINING - 1DL36 Fall 212" An introductory class in data mining http://www.it.uu.se/edu/course/homepage/infoutv/ht12 Kjell Orsborn Uppsala Database Laboratory Department of Information Technology, Uppsala

More information

Free-Sets: A Condensed Representation of Boolean Data for the Approximation of Frequency Queries

Free-Sets: A Condensed Representation of Boolean Data for the Approximation of Frequency Queries Data Mining and Knowledge Discovery, 7, 5 22, 2003 c 2003 Kluwer Academic Publishers. Manufactured in The Netherlands. Free-Sets: A Condensed Representation of Boolean Data for the Approximation of Frequency

More information

Lecture Notes for Chapter 6. Introduction to Data Mining

Lecture Notes for Chapter 6. Introduction to Data Mining Data Mining Association Analysis: Basic Concepts and Algorithms Lecture Notes for Chapter 6 Introduction to Data Mining by Tan, Steinbach, Kumar Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004

More information

Association Analysis Part 2. FP Growth (Pei et al 2000)

Association Analysis Part 2. FP Growth (Pei et al 2000) Association Analysis art 2 Sanjay Ranka rofessor Computer and Information Science and Engineering University of Florida F Growth ei et al 2 Use a compressed representation of the database using an F-tree

More information

Interestingness Measures for Data Mining: A Survey

Interestingness Measures for Data Mining: A Survey Interestingness Measures for Data Mining: A Survey LIQIANG GENG AND HOWARD J. HAMILTON University of Regina Interestingness measures play an important role in data mining, regardless of the kind of patterns

More information

Positive Borders or Negative Borders: How to Make Lossless Generator Based Representations Concise

Positive Borders or Negative Borders: How to Make Lossless Generator Based Representations Concise Positive Borders or Negative Borders: How to Make Lossless Generator Based Representations Concise Guimei Liu 1,2 Jinyan Li 1 Limsoon Wong 2 Wynne Hsu 2 1 Institute for Infocomm Research, Singapore 2 School

More information

CSE 5243 INTRO. TO DATA MINING

CSE 5243 INTRO. TO DATA MINING CSE 5243 INTRO. TO DATA MINING Mining Frequent Patterns and Associations: Basic Concepts (Chapter 6) Huan Sun, CSE@The Ohio State University 10/17/2017 Slides adapted from Prof. Jiawei Han @UIUC, Prof.

More information

DATA MINING - 1DL360

DATA MINING - 1DL360 DATA MINING - DL360 Fall 200 An introductory class in data mining http://www.it.uu.se/edu/course/homepage/infoutv/ht0 Kjell Orsborn Uppsala Database Laboratory Department of Information Technology, Uppsala

More information

Free-sets : a Condensed Representation of Boolean Data for the Approximation of Frequency Queries

Free-sets : a Condensed Representation of Boolean Data for the Approximation of Frequency Queries Free-sets : a Condensed Representation of Boolean Data for the Approximation of Frequency Queries To appear in Data Mining and Knowledge Discovery, an International Journal c Kluwer Academic Publishers

More information

Chapter 4: Frequent Itemsets and Association Rules

Chapter 4: Frequent Itemsets and Association Rules Chapter 4: Frequent Itemsets and Association Rules Jilles Vreeken Revision 1, November 9 th Notation clarified, Chi-square: clarified Revision 2, November 10 th details added of derivability example Revision

More information

Selecting the Right Interestingness Measure for Association Patterns

Selecting the Right Interestingness Measure for Association Patterns Selecting the Right ingness Measure for Association Patterns Pang-Ning Tan Department of Computer Science and Engineering University of Minnesota 2 Union Street SE Minneapolis, MN 55455 ptan@csumnedu Vipin

More information

Mining Infrequent Patter ns

Mining Infrequent Patter ns Mining Infrequent Patter ns JOHAN BJARNLE (JOHBJ551) PETER ZHU (PETZH912) LINKÖPING UNIVERSITY, 2009 TNM033 DATA MINING Contents 1 Introduction... 2 2 Techniques... 3 2.1 Negative Patterns... 3 2.2 Negative

More information

On Minimal Infrequent Itemset Mining

On Minimal Infrequent Itemset Mining On Minimal Infrequent Itemset Mining David J. Haglin and Anna M. Manning Abstract A new algorithm for minimal infrequent itemset mining is presented. Potential applications of finding infrequent itemsets

More information

Application of Apriori Algorithm in Open Experiment

Application of Apriori Algorithm in Open Experiment 2011 International Conference on Computer Science and Information Technology (ICCSIT 2011) IPCSIT vol. 51 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V51.130 Application of Apriori Algorithm

More information

EFFICIENT MINING OF WEIGHTED QUANTITATIVE ASSOCIATION RULES AND CHARACTERIZATION OF FREQUENT ITEMSETS

EFFICIENT MINING OF WEIGHTED QUANTITATIVE ASSOCIATION RULES AND CHARACTERIZATION OF FREQUENT ITEMSETS EFFICIENT MINING OF WEIGHTED QUANTITATIVE ASSOCIATION RULES AND CHARACTERIZATION OF FREQUENT ITEMSETS Arumugam G Senior Professor and Head, Department of Computer Science Madurai Kamaraj University Madurai,

More information

Meelis Kull Autumn Meelis Kull - Autumn MTAT Data Mining - Lecture 05

Meelis Kull Autumn Meelis Kull - Autumn MTAT Data Mining - Lecture 05 Meelis Kull meelis.kull@ut.ee Autumn 2017 1 Sample vs population Example task with red and black cards Statistical terminology Permutation test and hypergeometric test Histogram on a sample vs population

More information

Association Analysis: Basic Concepts. and Algorithms. Lecture Notes for Chapter 6. Introduction to Data Mining

Association Analysis: Basic Concepts. and Algorithms. Lecture Notes for Chapter 6. Introduction to Data Mining Association Analysis: Basic Concepts and Algorithms Lecture Notes for Chapter 6 Introduction to Data Mining by Tan, Steinbach, Kumar Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 1 Association

More information

Distributed Mining of Frequent Closed Itemsets: Some Preliminary Results

Distributed Mining of Frequent Closed Itemsets: Some Preliminary Results Distributed Mining of Frequent Closed Itemsets: Some Preliminary Results Claudio Lucchese Ca Foscari University of Venice clucches@dsi.unive.it Raffaele Perego ISTI-CNR of Pisa perego@isti.cnr.it Salvatore

More information

Data Mining Concepts & Techniques

Data Mining Concepts & Techniques Data Mining Concepts & Techniques Lecture No. 04 Association Analysis Naeem Ahmed Email: naeemmahoto@gmail.com Department of Software Engineering Mehran Univeristy of Engineering and Technology Jamshoro

More information

Mining Free Itemsets under Constraints

Mining Free Itemsets under Constraints Mining Free Itemsets under Constraints Jean-François Boulicaut Baptiste Jeudy Institut National des Sciences Appliquées de Lyon Laboratoire d Ingénierie des Systèmes d Information Bâtiment 501 F-69621

More information

CPDA Based Fuzzy Association Rules for Learning Achievement Mining

CPDA Based Fuzzy Association Rules for Learning Achievement Mining 2009 International Conference on Machine Learning and Computing IPCSIT vol.3 (2011) (2011) IACSIT Press, Singapore CPDA Based Fuzzy Association Rules for Learning Achievement Mining Jr-Shian Chen 1, Hung-Lieh

More information

DATA MINING LECTURE 4. Frequent Itemsets, Association Rules Evaluation Alternative Algorithms

DATA MINING LECTURE 4. Frequent Itemsets, Association Rules Evaluation Alternative Algorithms DATA MINING LECTURE 4 Frequent Itemsets, Association Rules Evaluation Alternative Algorithms RECAP Mining Frequent Itemsets Itemset A collection of one or more items Example: {Milk, Bread, Diaper} k-itemset

More information

Data mining, 4 cu Lecture 5:

Data mining, 4 cu Lecture 5: 582364 Data mining, 4 cu Lecture 5: Evaluation of Association Patterns Spring 2010 Lecturer: Juho Rousu Teaching assistant: Taru Itäpelto Evaluation of Association Patterns Association rule algorithms

More information

Removing trivial associations in association rule discovery

Removing trivial associations in association rule discovery Removing trivial associations in association rule discovery Geoffrey I. Webb and Songmao Zhang School of Computing and Mathematics, Deakin University Geelong, Victoria 3217, Australia Abstract Association

More information

COMP 5331: Knowledge Discovery and Data Mining

COMP 5331: Knowledge Discovery and Data Mining COMP 5331: Knowledge Discovery and Data Mining Acknowledgement: Slides modified by Dr. Lei Chen based on the slides provided by Tan, Steinbach, Kumar And Jiawei Han, Micheline Kamber, and Jian Pei 1 10

More information

An Approach to Classification Based on Fuzzy Association Rules

An Approach to Classification Based on Fuzzy Association Rules An Approach to Classification Based on Fuzzy Association Rules Zuoliang Chen, Guoqing Chen School of Economics and Management, Tsinghua University, Beijing 100084, P. R. China Abstract Classification based

More information

Density-Based Clustering

Density-Based Clustering Density-Based Clustering idea: Clusters are dense regions in feature space F. density: objects volume ε here: volume: ε-neighborhood for object o w.r.t. distance measure dist(x,y) dense region: ε-neighborhood

More information

Quantitative Association Rule Mining on Weighted Transactional Data

Quantitative Association Rule Mining on Weighted Transactional Data Quantitative Association Rule Mining on Weighted Transactional Data D. Sujatha and Naveen C. H. Abstract In this paper we have proposed an approach for mining quantitative association rules. The aim of

More information

Data Analytics Beyond OLAP. Prof. Yanlei Diao

Data Analytics Beyond OLAP. Prof. Yanlei Diao Data Analytics Beyond OLAP Prof. Yanlei Diao OPERATIONAL DBs DB 1 DB 2 DB 3 EXTRACT TRANSFORM LOAD (ETL) METADATA STORE DATA WAREHOUSE SUPPORTS OLAP DATA MINING INTERACTIVE DATA EXPLORATION Overview of

More information

On the robustness of association rules

On the robustness of association rules On the robustness of association rules Philippe Lenca, Benoît Vaillant, Stéphane Lallich GET/ENST Bretagne CNRS UMR 2872 TAMCIC Technopôle de Brest Iroise CS 8388, 29238 Brest Cedex, France Email: philippe.lenca@enst-bretagne.fr

More information

On Condensed Representations of Constrained Frequent Patterns

On Condensed Representations of Constrained Frequent Patterns Under consideration for publication in Knowledge and Information Systems On Condensed Representations of Constrained Frequent Patterns Francesco Bonchi 1 and Claudio Lucchese 2 1 KDD Laboratory, ISTI Area

More information

Lecture Notes for Chapter 6. Introduction to Data Mining. (modified by Predrag Radivojac, 2017)

Lecture Notes for Chapter 6. Introduction to Data Mining. (modified by Predrag Radivojac, 2017) Lecture Notes for Chapter 6 Introduction to Data Mining by Tan, Steinbach, Kumar (modified by Predrag Radivojac, 27) Association Rule Mining Given a set of transactions, find rules that will predict the

More information

CS 484 Data Mining. Association Rule Mining 2

CS 484 Data Mining. Association Rule Mining 2 CS 484 Data Mining Association Rule Mining 2 Review: Reducing Number of Candidates Apriori principle: If an itemset is frequent, then all of its subsets must also be frequent Apriori principle holds due

More information

Apriori algorithm. Seminar of Popular Algorithms in Data Mining and Machine Learning, TKK. Presentation Lauri Lahti

Apriori algorithm. Seminar of Popular Algorithms in Data Mining and Machine Learning, TKK. Presentation Lauri Lahti Apriori algorithm Seminar of Popular Algorithms in Data Mining and Machine Learning, TKK Presentation 12.3.2008 Lauri Lahti Association rules Techniques for data mining and knowledge discovery in databases

More information

2002 Journal of Software

2002 Journal of Software 1-9825/22/13(3)41-7 22 Journal of Software Vol13, No3,,,, (, 2326) E-mail inli@ustceducn http//wwwustceducn,,,,, Agrawal,,, ; ; ; TP18 A,,,,, ( ),,, ; Agrawal [1], [2],, 1 Agrawal [1], [1],Agrawal,, Heikki

More information

An Overview of Alternative Rule Evaluation Criteria and Their Use in Separate-and-Conquer Classifiers

An Overview of Alternative Rule Evaluation Criteria and Their Use in Separate-and-Conquer Classifiers An Overview of Alternative Rule Evaluation Criteria and Their Use in Separate-and-Conquer Classifiers Fernando Berzal, Juan-Carlos Cubero, Nicolás Marín, and José-Luis Polo Department of Computer Science

More information

DATA MINING LECTURE 4. Frequent Itemsets and Association Rules

DATA MINING LECTURE 4. Frequent Itemsets and Association Rules DATA MINING LECTURE 4 Frequent Itemsets and Association Rules This is how it all started Rakesh Agrawal, Tomasz Imielinski, Arun N. Swami: Mining Association Rules between Sets of Items in Large Databases.

More information

Efficient search of association rules with Fisher s exact test

Efficient search of association rules with Fisher s exact test fficient search of association rules with Fisher s exact test W. Hämäläinen Abstract limination of spurious and redundant rules is an important problem in the association rule discovery. Statistical measure

More information

732A61/TDDD41 Data Mining - Clustering and Association Analysis

732A61/TDDD41 Data Mining - Clustering and Association Analysis 732A61/TDDD41 Data Mining - Clustering and Association Analysis Lecture 6: Association Analysis I Jose M. Peña IDA, Linköping University, Sweden 1/14 Outline Content Association Rules Frequent Itemsets

More information

Associa'on Rule Mining

Associa'on Rule Mining Associa'on Rule Mining Debapriyo Majumdar Data Mining Fall 2014 Indian Statistical Institute Kolkata August 4 and 7, 2014 1 Market Basket Analysis Scenario: customers shopping at a supermarket Transaction

More information

Frequent Itemsets and Association Rule Mining. Vinay Setty Slides credit:

Frequent Itemsets and Association Rule Mining. Vinay Setty Slides credit: Frequent Itemsets and Association Rule Mining Vinay Setty vinay.j.setty@uis.no Slides credit: http://www.mmds.org/ Association Rule Discovery Supermarket shelf management Market-basket model: Goal: Identify

More information

Association Rules. Fundamentals

Association Rules. Fundamentals Politecnico di Torino Politecnico di Torino 1 Association rules Objective extraction of frequent correlations or pattern from a transactional database Tickets at a supermarket counter Association rule

More information

D B M G Data Base and Data Mining Group of Politecnico di Torino

D B M G Data Base and Data Mining Group of Politecnico di Torino Data Base and Data Mining Group of Politecnico di Torino Politecnico di Torino Association rules Objective extraction of frequent correlations or pattern from a transactional database Tickets at a supermarket

More information

P leiades: Subspace Clustering and Evaluation

P leiades: Subspace Clustering and Evaluation P leiades: Subspace Clustering and Evaluation Ira Assent, Emmanuel Müller, Ralph Krieger, Timm Jansen, and Thomas Seidl Data management and exploration group, RWTH Aachen University, Germany {assent,mueller,krieger,jansen,seidl}@cs.rwth-aachen.de

More information

Fuzzy Logic Controller Based on Association Rules

Fuzzy Logic Controller Based on Association Rules Annals of the University of Craiova, Mathematics and Computer Science Series Volume 37(3), 2010, Pages 12 21 ISSN: 1223-6934 Fuzzy Logic Controller Based on Association Rules Ion IANCU and Mihai GABROVEANU

More information

A New Concise and Lossless Representation of Frequent Itemsets Using Generators and A Positive Border

A New Concise and Lossless Representation of Frequent Itemsets Using Generators and A Positive Border A New Concise and Lossless Representation of Frequent Itemsets Using Generators and A Positive Border Guimei Liu a,b Jinyan Li a Limsoon Wong b a Institute for Infocomm Research, Singapore b School of

More information

D B M G. Association Rules. Fundamentals. Fundamentals. Association rules. Association rule mining. Definitions. Rule quality metrics: example

D B M G. Association Rules. Fundamentals. Fundamentals. Association rules. Association rule mining. Definitions. Rule quality metrics: example Association rules Data Base and Data Mining Group of Politecnico di Torino Politecnico di Torino Objective extraction of frequent correlations or pattern from a transactional database Tickets at a supermarket

More information

Anomalous Association Rules

Anomalous Association Rules Anomalous Association Rules Fernando Berzal, Juan-Carlos Cubero, Nicolás Marín Department of Computer Science and AI University of Granada Granada 18071 Spain {fberzal jc.cubero nicm}@decsai.ugr.es Matías

More information

D B M G. Association Rules. Fundamentals. Fundamentals. Elena Baralis, Silvia Chiusano. Politecnico di Torino 1. Definitions.

D B M G. Association Rules. Fundamentals. Fundamentals. Elena Baralis, Silvia Chiusano. Politecnico di Torino 1. Definitions. Definitions Data Base and Data Mining Group of Politecnico di Torino Politecnico di Torino Itemset is a set including one or more items Example: {Beer, Diapers} k-itemset is an itemset that contains k

More information

Dynamic Programming Approach for Construction of Association Rule Systems

Dynamic Programming Approach for Construction of Association Rule Systems Dynamic Programming Approach for Construction of Association Rule Systems Fawaz Alsolami 1, Talha Amin 1, Igor Chikalov 1, Mikhail Moshkov 1, and Beata Zielosko 2 1 Computer, Electrical and Mathematical

More information

FUZZY ASSOCIATION RULES: A TWO-SIDED APPROACH

FUZZY ASSOCIATION RULES: A TWO-SIDED APPROACH FUZZY ASSOCIATION RULES: A TWO-SIDED APPROACH M. De Cock C. Cornelis E. E. Kerre Dept. of Applied Mathematics and Computer Science Ghent University, Krijgslaan 281 (S9), B-9000 Gent, Belgium phone: +32

More information

Descrip9ve data analysis. Example. Example. Example. Example. Data Mining MTAT (6EAP)

Descrip9ve data analysis. Example. Example. Example. Example. Data Mining MTAT (6EAP) 3.9.2 Descrip9ve data analysis Data Mining MTAT.3.83 (6EAP) hp://courses.cs.ut.ee/2/dm/ Frequent itemsets and associa@on rules Jaak Vilo 2 Fall Aims to summarise the main qualita9ve traits of data. Used

More information

Detecting Anomalous and Exceptional Behaviour on Credit Data by means of Association Rules. M. Delgado, M.D. Ruiz, M.J. Martin-Bautista, D.

Detecting Anomalous and Exceptional Behaviour on Credit Data by means of Association Rules. M. Delgado, M.D. Ruiz, M.J. Martin-Bautista, D. Detecting Anomalous and Exceptional Behaviour on Credit Data by means of Association Rules M. Delgado, M.D. Ruiz, M.J. Martin-Bautista, D. Sánchez 18th September 2013 Detecting Anom and Exc Behaviour on

More information

Data Mining: Concepts and Techniques. (3 rd ed.) Chapter 6

Data Mining: Concepts and Techniques. (3 rd ed.) Chapter 6 Data Mining: Concepts and Techniques (3 rd ed.) Chapter 6 Jiawei Han, Micheline Kamber, and Jian Pei University of Illinois at Urbana-Champaign & Simon Fraser University 2013 Han, Kamber & Pei. All rights

More information

Concept Lattice Based Mutation Control for Reactive Motifs Discovery

Concept Lattice Based Mutation Control for Reactive Motifs Discovery Concept Lattice Based Mutation Control for Reactive Motifs Discovery Kitsana Waiyamai, Peera Liewlom, Thanapat Kangkachit, and Thanawin Rakthanmanon Data Analysis and Knowledge Discovery Laboratory (DAKDL),

More information

Association Rule Mining on Web

Association Rule Mining on Web Association Rule Mining on Web What Is Association Rule Mining? Association rule mining: Finding interesting relationships among items (or objects, events) in a given data set. Example: Basket data analysis

More information

Chapters 6 & 7, Frequent Pattern Mining

Chapters 6 & 7, Frequent Pattern Mining CSI 4352, Introduction to Data Mining Chapters 6 & 7, Frequent Pattern Mining Young-Rae Cho Associate Professor Department of Computer Science Baylor University CSI 4352, Introduction to Data Mining Chapters

More information

Layered critical values: a powerful direct-adjustment approach to discovering significant patterns

Layered critical values: a powerful direct-adjustment approach to discovering significant patterns Mach Learn (2008) 71: 307 323 DOI 10.1007/s10994-008-5046-x TECHNICAL NOTE Layered critical values: a powerful direct-adjustment approach to discovering significant patterns Geoffrey I. Webb Received:

More information

Pattern-Based Decision Tree Construction

Pattern-Based Decision Tree Construction Pattern-Based Decision Tree Construction Dominique Gay, Nazha Selmaoui ERIM - University of New Caledonia BP R4 F-98851 Nouméa cedex, France {dominique.gay, nazha.selmaoui}@univ-nc.nc Jean-François Boulicaut

More information

Association Analysis. Part 1

Association Analysis. Part 1 Association Analysis Part 1 1 Market-basket analysis DATA: A large set of items: e.g., products sold in a supermarket A large set of baskets: e.g., each basket represents what a customer bought in one

More information

Relation between Pareto-Optimal Fuzzy Rules and Pareto-Optimal Fuzzy Rule Sets

Relation between Pareto-Optimal Fuzzy Rules and Pareto-Optimal Fuzzy Rule Sets Relation between Pareto-Optimal Fuzzy Rules and Pareto-Optimal Fuzzy Rule Sets Hisao Ishibuchi, Isao Kuwajima, and Yusuke Nojima Department of Computer Science and Intelligent Systems, Osaka Prefecture

More information

CSE-4412(M) Midterm. There are five major questions, each worth 10 points, for a total of 50 points. Points for each sub-question are as indicated.

CSE-4412(M) Midterm. There are five major questions, each worth 10 points, for a total of 50 points. Points for each sub-question are as indicated. 22 February 2007 CSE-4412(M) Midterm p. 1 of 12 CSE-4412(M) Midterm Sur / Last Name: Given / First Name: Student ID: Instructor: Parke Godfrey Exam Duration: 75 minutes Term: Winter 2007 Answer the following

More information

Pattern Space Maintenance for Data Updates. and Interactive Mining

Pattern Space Maintenance for Data Updates. and Interactive Mining Pattern Space Maintenance for Data Updates and Interactive Mining Mengling Feng, 1,3,4 Guozhu Dong, 2 Jinyan Li, 1 Yap-Peng Tan, 1 Limsoon Wong 3 1 Nanyang Technological University, 2 Wright State University

More information

Sequential Pattern Mining

Sequential Pattern Mining Sequential Pattern Mining Lecture Notes for Chapter 7 Introduction to Data Mining Tan, Steinbach, Kumar From itemsets to sequences Frequent itemsets and association rules focus on transactions and the

More information

Pushing Tougher Constraints in Frequent Pattern Mining

Pushing Tougher Constraints in Frequent Pattern Mining Pushing Tougher Constraints in Frequent Pattern Mining Francesco Bonchi 1 and Claudio Lucchese 2 1 Pisa KDD Laboratory, ISTI - C.N.R., Area della Ricerca di Pisa, Italy 2 Department of Computer Science,

More information

Privacy Preserving Frequent Itemset Mining. Workshop on Privacy, Security, and Data Mining ICDM - Maebashi City, Japan December 9, 2002

Privacy Preserving Frequent Itemset Mining. Workshop on Privacy, Security, and Data Mining ICDM - Maebashi City, Japan December 9, 2002 Privacy Preserving Frequent Itemset Mining Stanley R. M. Oliveira 1,2 Osmar R. Zaïane 2 1 oliveira@cs.ualberta.ca zaiane@cs.ualberta.ca Embrapa Information Technology Database Systems Laboratory Andre

More information

A Concise Representation of Association Rules using Minimal Predictive Rules

A Concise Representation of Association Rules using Minimal Predictive Rules A Concise Representation of Association Rules using Minimal Predictive Rules Iyad Batal and Milos Hauskrecht Department of Computer Science University of Pittsburgh {iyad,milos}@cs.pitt.edu Abstract. Association

More information

NetBox: A Probabilistic Method for Analyzing Market Basket Data

NetBox: A Probabilistic Method for Analyzing Market Basket Data NetBox: A Probabilistic Method for Analyzing Market Basket Data José Miguel Hernández-Lobato joint work with Zoubin Gharhamani Department of Engineering, Cambridge University October 22, 2012 J. M. Hernández-Lobato

More information

Bottom-Up Propositionalization

Bottom-Up Propositionalization Bottom-Up Propositionalization Stefan Kramer 1 and Eibe Frank 2 1 Institute for Computer Science, Machine Learning Lab University Freiburg, Am Flughafen 17, D-79110 Freiburg/Br. skramer@informatik.uni-freiburg.de

More information

DATA MINING LECTURE 3. Frequent Itemsets Association Rules

DATA MINING LECTURE 3. Frequent Itemsets Association Rules DATA MINING LECTURE 3 Frequent Itemsets Association Rules This is how it all started Rakesh Agrawal, Tomasz Imielinski, Arun N. Swami: Mining Association Rules between Sets of Items in Large Databases.

More information

Handling a Concept Hierarchy

Handling a Concept Hierarchy Food Electronics Handling a Concept Hierarchy Bread Milk Computers Home Wheat White Skim 2% Desktop Laptop Accessory TV DVD Foremost Kemps Printer Scanner Data Mining: Association Rules 5 Why should we

More information

A Bi-clustering Framework for Categorical Data

A Bi-clustering Framework for Categorical Data A Bi-clustering Framework for Categorical Data Ruggero G. Pensa 1,Céline Robardet 2, and Jean-François Boulicaut 1 1 INSA Lyon, LIRIS CNRS UMR 5205, F-69621 Villeurbanne cedex, France 2 INSA Lyon, PRISMa

More information

Reductionist View: A Priori Algorithm and Vector-Space Text Retrieval. Sargur Srihari University at Buffalo The State University of New York

Reductionist View: A Priori Algorithm and Vector-Space Text Retrieval. Sargur Srihari University at Buffalo The State University of New York Reductionist View: A Priori Algorithm and Vector-Space Text Retrieval Sargur Srihari University at Buffalo The State University of New York 1 A Priori Algorithm for Association Rule Learning Association

More information

Finding the True Frequent Itemsets

Finding the True Frequent Itemsets Finding the True Frequent Itemsets Matteo Riondato Fabio Vandin Wednesday 9 th April, 2014 Abstract Frequent Itemsets (FIs) mining is a fundamental primitive in knowledge discovery. It requires to identify

More information

Association)Rule Mining. Pekka Malo, Assist. Prof. (statistics) Aalto BIZ / Department of Information and Service Management

Association)Rule Mining. Pekka Malo, Assist. Prof. (statistics) Aalto BIZ / Department of Information and Service Management Association)Rule Mining Pekka Malo, Assist. Prof. (statistics) Aalto BIZ / Department of Information and Service Management What)is)Association)Rule)Mining? Finding frequent patterns,1associations,1correlations,1or

More information

Iterative Laplacian Score for Feature Selection

Iterative Laplacian Score for Feature Selection Iterative Laplacian Score for Feature Selection Linling Zhu, Linsong Miao, and Daoqiang Zhang College of Computer Science and echnology, Nanjing University of Aeronautics and Astronautics, Nanjing 2006,

More information

CS4445 Data Mining and Knowledge Discovery in Databases. B Term 2014 Solutions Exam 2 - December 15, 2014

CS4445 Data Mining and Knowledge Discovery in Databases. B Term 2014 Solutions Exam 2 - December 15, 2014 CS4445 Data Mining and Knowledge Discovery in Databases. B Term 2014 Solutions Exam 2 - December 15, 2014 Prof. Carolina Ruiz Department of Computer Science Worcester Polytechnic Institute NAME: Prof.

More information

12 Count-Min Sketch and Apriori Algorithm (and Bloom Filters)

12 Count-Min Sketch and Apriori Algorithm (and Bloom Filters) 12 Count-Min Sketch and Apriori Algorithm (and Bloom Filters) Many streaming algorithms use random hashing functions to compress data. They basically randomly map some data items on top of each other.

More information

A Novel Approach of Multilevel Positive and Negative Association Rule Mining for Spatial Databases

A Novel Approach of Multilevel Positive and Negative Association Rule Mining for Spatial Databases A Novel Approach of Multilevel Positive and Negative Association Rule Mining for Spatial Databases L.K. Sharma 1, O. P. Vyas 1, U. S. Tiwary 2, R. Vyas 1 1 School of Studies in Computer Science Pt. Ravishankar

More information

PFPM: Discovering Periodic Frequent Patterns with Novel Periodicity Measures

PFPM: Discovering Periodic Frequent Patterns with Novel Periodicity Measures PFPM: Discovering Periodic Frequent Patterns with Novel Periodicity Measures Philippe Fournier-Viger a,, Chun-Wei Lin b, Quang-Huy Duong d, Thu-Lan Dam d, Lukáš Ševčík e, Dominik Uhrin e, Miroslav Voznak

More information

.. Cal Poly CSC 466: Knowledge Discovery from Data Alexander Dekhtyar..

.. Cal Poly CSC 466: Knowledge Discovery from Data Alexander Dekhtyar.. .. Cal Poly CSC 4: Knowledge Discovery from Data Alexander Dekhtyar.. Data Mining: Mining Association Rules Examples Course Enrollments Itemset. I = { CSC3, CSC3, CSC40, CSC40, CSC4, CSC44, CSC4, CSC44,

More information

Concepts of a Discrete Random Variable

Concepts of a Discrete Random Variable Concepts of a Discrete Random Variable Richard Emilion Laboratoire MAPMO, Université d Orléans, B.P. 6759 45067 Orléans Cedex 2, France, richard.emilion@univ-orleans.fr Abstract. A formal concept is defined

More information