
Last chance! 50% off unlimited learning
Sale ends in
configure the generation of the intersections
generateIntersections(
upsetjs,
min = 0,
max = NULL,
empty = FALSE,
order.by = "cardinality",
limit = NULL,
colors = NULL
)
the object given as first argument
an object of class upsetjs
or upsetjs_proxy
minimum number of sets in an intersection
maximum number of sets in an intersection
whether to include empty intersections or not
order intersections by cardinality, degree, name or a combination of it
limit the number of intersections to the top N
the optional list with set name to color
upsetjs() %>%
fromList(list(a = c(1, 2, 3), b = c(2, 3))) %>%
generateIntersections(min = 2)
Run the code above in your browser using DataLab