I want to merge 2 arff files. They have same attributes, but the values under the attributes changes.
For example:
1.arff: weather(sunny, rainy). 50 instances
2.arff: weather(warm, cold, freezing). 30 instances
I want to create a new arff:
3.arff: weather(sunny,rainy,warm,cold,freezing). 80 instances
I tried in sample CLI (weka):
java weka.core.Instances 1.arff 2.arff > 3.arff
java weka.core.Instances append 1.arff 2.arff > 3.arff
java weka.core.Instances merge 1.arff 2.arff > 3.arff
None of them worked.
I will be grateful if any help.
Thank you very much.