cbind.shaq {kazaam} | R Documentation |
Column binding for shaqs.
## S3 method for class 'shaq' cbind(..., deparse.level = 1)
... |
A collection of shaqs. |
deparse.level |
Ignored. |
All shaqs should have the same number of rows. Additionally, all shaqs should be distributed in identical fashion.
A shaq.
The operation is completely local.
## Not run: library(kazaam) x = ranshaq(runif, 10, 3) y = ranshaq(runif, 10, 1) cbind(x, y) finalize() ## End(Not run)