I'm quite new in Weka.
I was wondering, is it possible for Weka to classify 2 different set of database which consists of different attributes in Weka?
Example:
Dataset A : @attributes {UserID, Tags, Descriptions} @data a,#user, writing books
Dataset B : @attributes {UserID, Longitude, Latitude, Dates} @data xyz ,7895231, 453221.1, 28.10.2012
Is it possible to merge Dataset A and B with different attribute into 1 dataset in Weka ? I was told that I can manually merge it in the excel before Weka classify it but I was wandering how does Weka read the data? Is it row by row? Is it logical to put in these form (excel) and put value 0?
Dataset AB : UserID, Tags, Descriptions, UserID, Longitude,
Latitude, Dates
a, #user, writing books, 0, 0,0
xyz, 0, 0 , 7895231, 453221.1, 28.10.2012