addNumericAttribute {upsetjs} | R Documentation |
adds a new numeric attribute to the plot
Description
adds a new numeric attribute to the plot
Usage
addNumericAttribute(upsetjs, name, values, min_value = NULL, max_value = NULL)
Arguments
upsetjs |
an object of class |
name |
name of the attribute |
values |
the values as a numeric vector |
min_value |
optional min domain value |
max_value |
optional max domain value |
Value
the object given as first argument
Examples
upsetjs() %>%
fromList(list(a = c(1, 2, 3), b = c(2, 3))) %>%
addNumericAttribute("attr", runif(3))
[Package upsetjs version 1.11.1 Index]