项目作者: cschen1205

项目描述 :
Associative Rule Mining in C#
高级语言: C#
项目地址: git://github.com/cschen1205/cs-arm.git
创建时间: 2018-04-02T03:22:59Z
项目社区:https://github.com/cschen1205/cs-arm

开源协议:MIT License

下载


cs-arm

Associative Rule Mining in C#

The current project implements the Apriori algorithm for associative rule mining

Apriori algorithm is a frequent pattern mining algorithm that finds frequent patterns with support threshold defined by user.

Install

Run the following nuget command:

  1. Install-Package cs-arm-apriori

Usage

The sample code below shows how to use Apriori to find the frequent item sets:

  1. using System;
  2. using System.Collections.Generic;
  3. using ARM;
  4. namespace project_demo
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. List<HashSet<char>> database = new List<HashSet<char>>();
  11. database.Add(new HashSet<char>(new char[] { 'a', 'c', 'd', 'e' }));
  12. database.Add(new HashSet<char>(new char[] { 'a', 'b', 'e' }));
  13. database.Add(new HashSet<char>(new char[] { 'b', 'c', 'e' }));
  14. database.Add(new HashSet<char>(new char[] { 'b', 'c', 'e' }));
  15. Apriori<char> method = new Apriori<char>();
  16. Dictionary<int, List<ItemSet<char>>> itemsets = method.BuildFreqItemSet(database, new List<char>() { 'a', 'b', 'c', 'd', 'e' }, 2);
  17. foreach (int supportLevel in itemsets.Keys)
  18. {
  19. List<ItemSet<char>> itemsetList = itemsets[supportLevel];
  20. foreach (ItemSet<char> itemset in itemsetList)
  21. {
  22. Console.WriteLine("{0} (support: {1})", itemset, itemset.SupportLevel);
  23. }
  24. }
  25. }
  26. }
  27. }