Hello all. Attached is my dataset and I am new to machine learning and Weka.
First, I took the dataset and converted it from numeric to nominal. The problem I cant seem to figure out is how to make all the attribute values and labels {0, 1}. I don't want percentages i.e. 0.00525 etc.
I envision something like this:
@attribute A {0, 1}
@attribute B {0, 1}
etc..
@data
1,0,0,1,1,0..
0, 0, 1,1, 1..
etc...
Which options in Weka should I choose? I have tried the following under unsupervised: Discretize and RenameNominalValues. Perhaps the options I used weren't correct? Any insight would be great thank you.