R语言 添加向量中的元素 – append()方法
R编程中的 append() 方法用于将不同类型的整数值追加到一个向量中,最后。
语法: append(x, value, index(optional))
返回: 在追加给定值后,返回新的向量。
例1 :
x <- rep(1:5)
# Using rep() method
gfg <- append(x, 10)
print(gfg)
输出
[1] 1 2 3 4 5 10
例2 :
x <- rep(10:15)
# Using rep() method
gfg <- append(x, 1, 1)
print(gfg)
输出
[1] 10 1 11 12 13 14 15