public AprioriTest() { _minSupport = .5; _minConfidence = .8; _items = new string[5] { "a", "b", "c", "d", "e" }; _transactions = new string[4] { "acd", "bce", "abce", "be" }; _target = new Apriori_Accessor(); }
public AprioriTest() { _minSupport = 0.2; _minConfidence = 0.6; _items = new string[10] { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j" }; _transactions = new string[15] { "acdfj", "bcefi", "abcej", "bdegh", "abfgi", "bcegj", "acehi", "bcdeh", "aefgh", "abcde", "bcdef", "cdefg", "defgh", "efghi", "fghij" }; _target = new Apriori_Accessor(); }
public AprioriTest() { minSupport = .5; minConfidence = .8; items = new string[5] { "a", "b", "c", "d", "e" }; transactions = new Dictionary<int, string> { {1,"acd"}, {2,"bce"}, {3,"abce"}, {4,"be"} }; target = new Apriori_Accessor(); }