Combine Rows
Combines the rows of DTSg
and other suitable objects.
## S3 method for class 'DTSg' rowbind(x, ..., clone = getOption("DTSgClone"))
x |
A |
... |
Any number of |
clone |
A logical specifying if the object is modified in place or if a clone (copy) is made beforehand. |
Returns a DTSg
object.
# new DTSg object x <- DTSg$new(values = flow[1:500, ]) # combine rows ## R6 method x$rowbind( list(flow[1001:1500, ], DTSg$new(values = flow[501:1000, ])), flow[1501:.N, ] ) ## S3 method rowbind( x = x, list(flow[1001:1500, ], DTSg$new(values = flow[501:1000, ])), flow[1501:.N, ] )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.