View source: R/repgrid-basicops.r
cbind.repgrid | R Documentation |
Concatenate the elements of two grids
## S3 method for class 'repgrid'
cbind(..., .reorder = TRUE, .unique = FALSE)
... |
|
.reorder |
If |
.unique |
If |
repgrid
with combined elements.
x <- boeker[, 1:2]
y <- boeker[, 5:7]
cbind(x, y)
x / y
y_reordered <- y[sample(nrow(y)), ]
cbind(x, y, y_reordered)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.