cbind()
function in R Language is used to combine specified Vector, Matrix or Data Frame by columns.
Syntax: cbind(x1, x2, …, deparse.level = 1)
Parameters:
x1, x2: vector, matrix, data frames
deparse.level: This value determines how the column names generated. The default value of deparse.level is 1.
Example 1:
x < - 2 : 7
y < - c( 2 , 5 )
cbind(x, y)
|
Output:
x y
[1, ] 2 2
[2, ] 3 5
[3, ] 4 2
[4, ] 5 5
[5, ] 6 2
[6, ] 7 5
Example 2:
x < - 1 : 5
cbind(x, 4 )
cbind(x, 5 , deparse.level = 0 )
cbind(x, 6 , deparse.level = 2 )
cbind(x, 4 , deparse.level = 6 )
|
Output:
x
[1, ] 1 4
[2, ] 2 4
[3, ] 3 4
[4, ] 4 4
[5, ] 5 4
[, 1] [, 2]
[1, ] 1 5
[2, ] 2 5
[3, ] 3 5
[4, ] 4 5
[5, ] 5 5
x 6
[1, ] 1 6
[2, ] 2 6
[3, ] 3 6
[4, ] 4 6
[5, ] 5 6
[, 1] [, 2]
[1, ] 1 4
[2, ] 2 4
[3, ] 3 4
[4, ] 4 4
[5, ] 5 4
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!