module FpGrowth::FpTree

Public Class Methods

build(transactions, threshold=1) click to toggle source
# File lib/fpgrowth/fp_tree.rb, line 12
def self.build(transactions, threshold=1)
  Builder.build(transactions, threshold)
end