make.subset {VennDetail} | R Documentation |
Get subset from list of input groups
make.subset(x, sep = "_")
x |
A list with input groups |
sep |
symbol character used when concatenating group names into subset names |
A list of subsets. The names on the list are the subset names and the list elements are the subset details.
Kai Guo
A <- sample(1:100, 40, replace = FALSE) B <- sample(1:100, 60, replace = FALSE) C <- sample(1:100, 40, replace = FALSE) x <- list(A = A, B = B, C = C) out <- make.subset(x)