当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 append()用法及代码示例


append()R编程中的方法用于在最后将不同类型的整数值附加到向量中。

用法: 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

相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Adding elements in a vector in R programming – append() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。