result: Extract the result from venn object

Description Usage Arguments Value Author(s) Examples

Description

Result will return output in a table format including the contents of the subsets included in the venndetail object

Usage

1
2
3
4
result(object, wide = FALSE)

## S4 method for signature 'Venn'
result(object, wide = FALSE)

Arguments

object

Venn object

wide

Boolean indicating whether to return wide format(default:FALSE)

Value

return dataframe and print header of dataframe

Author(s)

Kai Guo

Examples

1
2
3
4
5
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)

guokai8/VennDetail documentation built on July 28, 2021, 1:02 p.m.