detail {VennDetail} | R Documentation |
The objective of this function is to summarizes the overlaps across groups identified by venndetail without creating diagram.
detail(object) ## S4 method for signature 'Venn' detail(object)
object |
Venn object |
Numeric vector with set names and amounts for each set
Kai Guo
A <- sample(1:100, 40, replace = FALSE) B <- sample(1:100, 60, replace = FALSE) C <- sample(1:100, 40, replace = FALSE) res <- venndetail(list(A = A, B = B, C = C)) detail(res)