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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The answer/solution:
Capabilitiesbutton. Then a small popup will show up containing some info regarding particular algorithm.FPGrowth– model attributes needs to be ofbinarytype. In my case I had a mix od nominal and numeric parameters. I had to applyNominalToBinaryfilter which converted my nominal attributes to binary values. Then I had to apply flterNumericToBinarywith selected optionignoreClassset totrue.This has helped me to “unlock”
FPGrowthin Weka.