ibind {COveR} | R Documentation |
Combines multiple interval objects into a single interval object.
Description
Combines multiple interval objects into a single interval object.
Usage
ibind(..., class = FALSE)
Arguments
... |
Interval objects to bind together. |
class |
Logical value indicating whether to assign a new class label to each interval object when binding. If 'TRUE', each set of intervals will have a distinct class label. |
Value
A new interval object containing the combined intervals from the input objects.
Examples
ibind(iaggregate(iris, 5), iaggregate(iris, 5))
ibind(iaggregate(iris, 5), iaggregate(iris, 5), iaggregate(iris, 5),
class = TRUE)
[Package COveR version 1.1.0 Index]