在 R 语言中按行组合向量、矩阵或数据帧 - rbind()函数
R 语言中的rbind()
函数用于逐行组合指定的向量、矩阵或数据帧。
Syntax: rbind(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.
示例 1:
# R program to illustrate
# rbind function
# Initializing two vectors
x <- 2:7
y <- c(2, 5)
# Calling rbind() function
rbind(x, y)
输出:
[, 1] [, 2] [, 3] [, 4] [, 5] [, 6]
x 2 3 4 5 6 7
y 2 5 2 5 2 5
示例 2:
# R program to illustrate
# rbind function
# Initializing a vector
x <- 1:5
# Calling rbind() function
rbind(x, 4)
rbind(x, 5, deparse.level = 0)
rbind(x, 6, deparse.level = 2)
rbind(x, 4, deparse.level = 6)
输出:
[, 1] [, 2] [, 3] [, 4] [, 5]
x 1 2 3 4 5
4 4 4 4 4
[, 1] [, 2] [, 3] [, 4] [, 5]
[1, ] 1 2 3 4 5
[2, ] 5 5 5 5 5
[, 1] [, 2] [, 3] [, 4] [, 5]
x 1 2 3 4 5
6 6 6 6 6 6
[, 1] [, 2] [, 3] [, 4] [, 5]
[1, ] 1 2 3 4 5
[2, ] 4 4 4 4 4