Module fp_growth::algorithm[][src]

algorithm is the core module of FP-Growth algorithm. It implements the algorithm based on the internal data structs crate::tree::Node<T> and crate::tree::Tree<T>.

Structs

FPGrowth

FPGrowth<T> represents an algorithm instance, it should include the transactions input and minimum support value as the initial config. Once it is created, you could run FPGrowth::find_frequent_patterns() to start the frequent pattern mining.

FPResult