SMART Journal of Business Management Studies
Open Access
  • Year: 2009
  • Volume: 5
  • Issue: 2

Performance analysis on association rule in data mining

  • Author:
  • T. Muthukumar1,2, M. Ramasamy3
  • Total Page Count: 8
  • Page Number: 13 to 20

1Research Scholar, Sathyabama University, Chennai, Tamil Nadu, India

2Assistant Director-Board of Studies – The Institute of Chartered Accountants of IndiaNew Delhi

3Dean, PG Studies, Madha Engineering College, Chennai, Tamil Nadu, India

Online published on 7 September, 2015.

Abstract

One of the most important problems in data mining is to find association rules. The association rule mining can be classified into two main categories: the level-wise algorithms and the tree based algorithms. The level-wise algorithm like Apriori, scan the entire database multiple times and also generate a huge number of candidate sets. It also needs to repeatedly scan the database and check a large set of candidates by pattern matching. Tree based algorithms, like FP-tree, scan the database only twice. One scan may be needed for FP-tree construction and another scan for adding new items into the tree. But it takes more time when new data are added to an existing database. Another tree based algorithm, P-Tree is constructed by a single scan of a database and it updates the P-tree by one scan of new data. The above said three algorithms are implemented by using C++/java/.net and their performances are evaluated by using synthetic dataset with respect to number of scanning of dataset. The performance study shows that in majority of cases, Pattern Tree achieves better performance and efficiency than Apriori and FP algorithms.

Keywords

Data mining, association rules, level wise algorithms, Pattern Tree