Learn R Programming

upsetjs (version 1.11.1)

generateUnions: configure the generation of the unions

Description

configure the generation of the unions

Usage

generateUnions(
  upsetjs,
  min = 0,
  max = NULL,
  empty = FALSE,
  order.by = "cardinality",
  limit = NULL,
  colors = NULL
)

Value

the object given as first argument

Arguments

upsetjs

an object of class upsetjs or upsetjs_proxy

min

minimum number of sets in an union

max

maximum number of sets in an union

empty

whether to include empty intersections or not

order.by

order intersections by cardinality, degree, name or a combination of it

limit

limit the number of intersections to the top N

colors

the optional list with set name to color

Examples

Run this code
upsetjs() %>%
  fromList(list(a = c(1, 2, 3), b = c(2, 3))) %>%
  generateUnions()

Run the code above in your browser using DataLab