Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

r - regarding the difference, intersection and union of two vectors

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You're looking for intersect and setdiff:

term.intersect <- intersect(termlist[1,], termlist[2,])
term2.diff.term1 <- setdiff(termlist[2, ], termlist[1, ])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...