Skip to main content

An Efficient Algorithm for Deriving Frequent Itemsets from Lossless Condensed Representation

  • Conference paper
  • First Online:

Part of the book series: Lecture Notes in Computer Science ((LNAI,volume 11606))

Abstract

Mining frequent itemsets (abbr. FIs) from dense databases usually generates a large amount of itemsets, causing the mining algorithms to suffer from long execution time and high memory usage. Frequent closed itemset (abbr. FCI) is a lossless condensed representation of FI. Mining only the FCIs allows to reducing the execution time and memory usage. Moreover, with correct methods, the complete information of FIs can be derived from FCIs. Although many studies have presented various efficient approaches for mining FCIs, few of them have developed efficient algorithms for deriving FIs from FCIs. In view of this, we propose a novel algorithm called DFI-Growth for efficiently deriving FIs from FCIs. Moreover, we propose two strategies, named maximum support selection and maximum support replacement to guarantee that all the FIs and their supports can be correctly derived by DFI-Growth. To the best of our knowledge, the proposed DFI-Growth is the first kind of tree-based and pattern growth algorithm for deriving FIs from FCIs. Experiments show that DFI-Growth is superior to the most advanced deriving algorithm [12] in terms of both execution time and memory consumption.

This is a preview of subscription content, log in via an institution.

Buying options

Chapter
USD   29.95
Price excludes VAT (USA)
  • Available as PDF
  • Read on any device
  • Instant download
  • Own it forever
eBook
USD   89.00
Price excludes VAT (USA)
  • Available as EPUB and PDF
  • Read on any device
  • Instant download
  • Own it forever
Softcover Book
USD   119.99
Price excludes VAT (USA)
  • Compact, lightweight edition
  • Dispatched in 3 to 5 business days
  • Free shipping worldwide - see info

Tax calculation will be finalised at checkout

Purchases are for personal use only

Learn about institutional subscriptions

References

  1. Agrawal, R., Srikant, R.: Fast algorithms for mining association rules. In: Proceedings of International Conference on Very Large Data Bases, pp. 487–499 (1994)

    Google Scholar 

  2. Boulicaut, J.-F., Bykowski, A., Rigotti, C.: Approximation of frequency queries by means of free-sets. In: Zighed, D.A., Komorowski, J., Żytkow, J. (eds.) PKDD 2000. LNCS (LNAI), vol. 1910, pp. 75–85. Springer, Heidelberg (2000). https://doi.org/10.1007/3-540-45372-5_8

    Chapter  Google Scholar 

  3. Calders, T., Goethals, B.: Mining all non-derivable frequent itemsets. In: Elomaa, T., Mannila, H., Toivonen, H. (eds.) PKDD 2002. LNCS, vol. 2431, pp. 74–86. Springer, Heidelberg (2002). https://doi.org/10.1007/3-540-45681-3_7

    Chapter  MATH  Google Scholar 

  4. Fournier-Viger, P., Gomariz, A., Gueniche, T., Soltani, A., Wu, C., Tseng, V.S.: SPMF: a Java open-source pattern mining library. J. Mach. Learn. Res. 15, 3569–3573 (2014)

    MATH  Google Scholar 

  5. Gupta, S., Mamtora, R.: A survey on association rule mining in market basket analysis. Int. J. Inf. Comput. Technol. 4(4), 409–414 (2014)

    Google Scholar 

  6. Gouda, K., Zaki, M.: GenMax: an efficient algorithm for mining maximal frequent itemsets. Data Min. Knowl. Discov. 11(3), 223–242 (2005)

    Article  MathSciNet  Google Scholar 

  7. Han, J., Pei, J., Yin, Y.: Mining frequent patterns without candidate generation. In: Proceedings of ACM SIGMOD International Conference on Management of Data, pp. 1–12 (2000)

    Google Scholar 

  8. Lucchese, C., Orlando, S., Perego, R.: Fast and memory efficient mining of frequent closed itemsets. IEEE Trans. Knowl. Data Eng. 18(1), 21–36 (2006)

    Article  Google Scholar 

  9. Liu, J., Shang, J., Wang, C., Ren, X., Han, J.: Mining quality phrases from massive text corpora. In: Proceedings of ACM SIGMOD International Conference on Management of Data, pp. 1729–1744 (2015)

    Google Scholar 

  10. Mohammed, E.H., Zaiane, O.R.: COFI-tree mining: a new approach to pattern growth with reduced candidacy generation. In: Proceedings of IEEE International Conference on Data Mining (2003)

    Google Scholar 

  11. Pasquier, N., Bastide, Y., Taouil, R., Lakhal, L.: Discovering frequent closed itemsets for association rules. In: Proceedings of 7th International Conference on Database Theory, pp. 398–416 (1999)

    Google Scholar 

  12. Pasquier, N., Bastide, Y., Taouil, R., Lakhal, L.: Efficient mining of association rules using closed itemset lattices. Inf. Syst. 24(1), 25–46 (1999)

    Article  Google Scholar 

  13. Park, J.S., Chen, M.S., Yu, P.S.: An effective hash-based algorithm for mining association rules. In: Proceedings of ACM SIGMOD International Conference on Management of Data, pp. 175–186 (1995)

    Google Scholar 

  14. Pei, J., Han, J., Lu, H., Nishio, S., Tang, D., Yang, S.: H-Mine: hyper-structure mining of frequent patterns in large databases. In: Proceedings of IEEE International Conference on Data Mining, pp. 441–448 (2001)

    Google Scholar 

  15. Prabha, S., Shanmugapriya, S., Duraiswamy, K.: A survey on closed frequent pattern mining. Int. J. Comput. Appl. 63(14), 47–52 (2013)

    Google Scholar 

  16. Ting, S.L., Shum, C.C., Kwok, S.K., Tsang, A.H.C., Lee, W.B.: Data mining in biomedicine: current applications and further directions for research. J. Softw. Eng. Appl. 150–159 (2009)

    Google Scholar 

  17. Wang, J., Han, J., Pei, J.: CLOSET+: searching for the best strategies for mining frequent closed itemsets. In: Proceedings of 9th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, pp. 236–245 (2003)

    Google Scholar 

  18. Zaki, M.J.: Scalable algorithms for association mining. IEEE Trans. Knowl. Data Eng. 12(3), 372–390 (2000)

    Article  Google Scholar 

  19. Zaki, M.J., Hsiao, C.J.: CHARM: an efficient algorithm for closed itemset mining. In: Proceedings of SIAM International Conference on Data Mining, pp. 457–473 (2002)

    Google Scholar 

  20. Zhang, Q., Segall, R.: Web mining: a survey of current research, techniques, and software. Int. J. Inf. Technol. Decis. Making 7(4), 683–720 (2008)

    Article  Google Scholar 

  21. Source code of the implemented LevelWise algorithm released in SPMF. http://www.philippe-fournier-viger.com/spmf/LevelWise

  22. Source code of the proposed DFI-Growth algorithm released in SPMF. http://www.philippe-fournier-viger.com/spmf/DFI-Growth

Download references

Acknowledgment

This work is supported in part by Ministry of Science and Technology, Taiwan, ROC under grant no. 107-2218-E-197-002 and 108-2634-F-009-010.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Cheng-Wei Wu .

Editor information

Editors and Affiliations

Rights and permissions

Reprints and permissions

Copyright information

© 2019 Springer Nature Switzerland AG

About this paper

Check for updates. Verify currency and authenticity via CrossMark

Cite this paper

Huang, J., Lai, YP., Lo, C., Wu, CW. (2019). An Efficient Algorithm for Deriving Frequent Itemsets from Lossless Condensed Representation. In: Wotawa, F., Friedrich, G., Pill, I., Koitz-Hristov, R., Ali, M. (eds) Advances and Trends in Artificial Intelligence. From Theory to Practice. IEA/AIE 2019. Lecture Notes in Computer Science(), vol 11606. Springer, Cham. https://doi.org/10.1007/978-3-030-22999-3_20

Download citation

  • DOI: https://doi.org/10.1007/978-3-030-22999-3_20

  • Published:

  • Publisher Name: Springer, Cham

  • Print ISBN: 978-3-030-22998-6

  • Online ISBN: 978-3-030-22999-3

  • eBook Packages: Computer ScienceComputer Science (R0)

Publish with us

Policies and ethics