Module: FpGrowth::FpTree

Defined in:
lib/fpgrowth/fp_tree.rb,
lib/fpgrowth/fp_tree/node.rb,
lib/fpgrowth/fp_tree/builder.rb,
lib/fpgrowth/fp_tree/builder/first_pass.rb,
lib/fpgrowth/fp_tree/builder/second_pass.rb

Defined Under Namespace

Modules: Builder Classes: FpTree, Node

Class Method Summary collapse

Class Method Details

.build(transactions, threshold = 1) ⇒ Object



10
11
12
# File 'lib/fpgrowth/fp_tree.rb', line 10

def self.build(transactions, threshold=1)
  Builder.build(transactions, threshold)
end