-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.py
37 lines (30 loc) · 1.16 KB
/
rules.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import csv
from algorithm.association_rules import find_rules
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser()
# find association rules
parser.add_argument('--minconfidence',
default=0.2,
help='minimum confidence')
parser.add_argument('--input',
default='patterns.csv',
help='input file')
parser.add_argument('--output',
default='rules.csv',
help='output file')
args = parser.parse_args()
with open(args.input, 'r') as input_file, open(args.output, 'w') as rules_output:
reader = csv.DictReader(input_file)
fp_dict = {
row['pattern']: int(row['counts'])
for row in reader
}
rules_output.write('rule,confidence,support\n')
rules = find_rules(fp_dict, float(args.minconfidence))
get_confidence = lambda rule: rule[1]
rules.sort(key=get_confidence, reverse=True)
for rule in rules:
rule = map(str, rule)
rules_output.write(','.join(rule))
rules_output.write('\n')