Description Usage Arguments Value Examples
This functions works very similar to well-known base 'cbind' or 'rbind' function. However, there is one big difference between these functions. If you pass a vector, each value will be get individually.
1 2 3 |
... |
single values, vectors, matrices or data.frames |
a matrix being a product of matrix/vector/values binding
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # `col_bind` vs `cbind`
cbind(1,2,3,4,5)
col_bind(1,2,3,4,5)
cbind(1:5)
col_bind(1:5)
cbind(matrix(3, 3, 3), 0.33, 4:7)
col_bind(matrix(3, 3, 3), 0.33, 4:7)
# `row_bind` vs `rbind`
rbind(1,2,3,4,5)
row_bind(1,2,3,4,5)
rbind(1:5)
row_bind(1:5)
rbind(matrix(3, 3, 3), 0.33, 4:7)
row_bind(matrix(3, 3, 3), 0.33, 4:7)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.