I currently have two separate ARFF files for use in a Java program i'm writing that uses WEKAs machine learning algorithms. The two files are in the format:
@attribute movieID numeric
@attribute title {whole, host, of, movie, titles}
@attribute genres {whole, list, of, genres}
and
@attribute movieID numeric
@attribute tags {very, long, list, of, possible, tags}
@attribute timestamp numeric
In an ideal world i am looking to 'join' these two files by their movieID's so the relevant tags would be assigned to the movies however i am not sure if this is possible? Having had a fair old search i'm not sure exactly how to go about this or in general to create a single dataset for use with the rest of the program with studies association rules. Any help would be greatly appreciated