detail {VennDetail}R Documentation

Detail function provides a way to display the amount of members in each group

Description

The objective of this function is to summarizes the overlaps across groups identified by venndetail without creating diagram.

Usage

detail(object)

## S4 method for signature 'Venn'
detail(object)

Arguments

object

Venn object

Value

Numeric vector with set names and amounts for each set

Author(s)

Kai Guo

Examples

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)

[Package VennDetail version 1.0.0 Index]