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
相关用法
- R语言 jitter()用法及代码示例
- R语言 as.vector()用法及代码示例
- R语言 is.vector()用法及代码示例
- R语言 rep()用法及代码示例
- R语言 make.unique()用法及代码示例
- R语言 replace()用法及代码示例
- R语言 seq()用法及代码示例
- R语言 diff()用法及代码示例
- R语言 median()用法及代码示例
- R语言 sign()用法及代码示例
- R语言 axis()用法及代码示例
- R语言 abline()用法及代码示例
- R语言 charmatch()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Adding elements in a vector in R programming – append() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。