Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 77281db

Browse files
author
Eric Naeseth
committed
Expanding the module's docstring a little bit.
1 parent f544a67 commit 77281db

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

fp_growth.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
"""
44
A Python implementation of the FP-growth algorithm.
5+
6+
Basic usage of the module is very simple:
7+
8+
>>> from fp_growth import find_frequent_itemsets
9+
>>> find_frequent_itemsets(transactions, minimum_support)
510
"""
611

712
from collections import defaultdict

0 commit comments

Comments
 (0)