I have a csv file, which has two rows, and each row corresponds to a list of words. I read this csv file into a 2*2000 matrix as follows:
termlist = as.matrix(read.csv("termlist.csv",sep=",",header=FALSE))
Right now, I would like to know the following information for these two rows, the intersection list of the first row and the second row; the remaining list after subtracting this intersection list from the second row.