make.subset: Get subset from list of input groups

Description Usage Arguments Value Author(s) Examples

Description

Get subset from list of input groups

Usage

1
make.subset(x, sep = "_")

Arguments

x

A list with input groups

sep

symbol character used when concatenating group names into subset names

Value

A list of subsets. The names on the list are the subset names and the list elements are the subset details.

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)
x <- list(A = A, B = B, C = C)
out <-  make.subset(x)

VennDetail documentation built on Nov. 8, 2020, 8:25 p.m.