I'd like to use FP-Growth association rule algorithm on my dataset (model) in Weka.
Unfortunately, this algorithm is greyed out. What are preconditions I have to meet in order to make use of it?
The answer/solution:
Capabilities
button. Then a small popup will show up containing some info regarding particular algorithm.FPGrowth
- model attributes needs to be of binary
type. In my case I had a mix od nominal and numeric parameters. I had to apply NominalToBinary
filter which converted my nominal attributes to binary values. Then I had to apply flter NumericToBinary
with selected option ignoreClass
set to true
.This has helped me to "unlock" FPGrowth
in Weka.