I have a list of 4 vectors with terms (characters). I'm looking to obtain a table with the pairwise comparison of the terms. How many are equal in each pairwise comparison?
Here is an example:
set.seed(20190708)
genes <- paste("gene",1:1000,sep="")
x <- list(
A = sample(genes,300),
B = sample(genes,525),
C = sample(genes,440),
D = sample(genes,350)
)
And here is what I'm looking for:
Those are the number of terms present in both groups.
We may use
outer
if we want a symmetric matrix as output, andas.dist
to present the result as just the lower triangle.Or if it is just pairwise comparison without the mirror duplicates