combine {matter} | R Documentation |
This is a generic function for combining matter
objects. A default fallback method to c()
is provided as well.
This generic is internally used to implement c()
, cbind()
, and rbind()
for matter
objects.
combine(x, y, ...)
x |
One of the objects. |
y |
A second object. |
... |
Any other objects of the same class as |
Kylie A. Bemis
x <- 1:5 y <- 6:10 combine(x, y)