Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This example uses FP-Growth for finding frequent item sets. it does not need any parameters in algorithm

Code Block
languagejavascript
themeEclipselanguagejavascript
titleOperator
linenumberstrue
/// support is 3 out of 1000 transactions
fpm =  FREQUENTITEMSETFREQUENTPATTERN({support=3.0, transactions=1000, learner = 'fpgrowth'}, inputoperator)

/// support is 60% out of 1000 transactions, so it is equal to a support of 600.0
fpm =  FREQUENTITEMSETFREQUENTPATTERN({support=0.6, transactions=1000, learner = 'fpgrowth'}, inputoperator)