make.subset {VennDetail}R Documentation

Get subset from list of input groups

Description

Get subset from list of input groups

Usage

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

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)

[Package VennDetail version 1.2.0 Index]