在 R 编程中在向量中添加元素 - append() 方法
R 编程中的append()
方法用于将不同类型的整数值附加到最后一个向量中。
Syntax: append(x, value, index(optional))
Return: Returns the new vector after appending given value.
示例 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