3

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.

4

1 に答える 1

10

あなたが探しているintersectsetdiff

term.intersect <- intersect(termlist[1,], termlist[2,])
term2.diff.term1 <- setdiff(termlist[2, ], termlist[1, ])
于 2012-09-07T20:35:46.040 に答える