binding: Bind vector, single values and matrices

Description Usage Arguments Value Examples

Description

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.

Usage

1
2
3

Arguments

...

single values, vectors, matrices or data.frames

Value

a matrix being a product of matrix/vector/values binding

Examples

 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)

matricks documentation built on March 26, 2020, 6:22 p.m.