result {VennDetail} | R Documentation |
Result will return output in a table format including the contents of the subsets included in the venndetail object
result(object, wide = FALSE) ## S4 method for signature 'Venn' result(object, wide = FALSE)
object |
Venn object |
wide |
Boolean indicating whether to return wide format(default:FALSE) |
return dataframe and print header of dataframe
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)) result <- result(res)