借助rep()
方法,我们可以在 R 编程中复制向量的元素。
用法:rep(x, times)
返回:Returns the replicated vectors.
范例1:
# Using rep() method
x <- rep(1:5)
gfg <- rep(x, 2)
print(gfg)
输出:
[1] 1 2 3 4 5 1 2 3 4 5
范例2:
# Using rep() method
x <- rep(-10:-5)
gfg <- rep(x, 3)
print(gfg)
输出:
[1] -10 -9 -8 -7 -6 -5 -10 -9 -8 -7 -6 -5 -10 -9 -8 -7 -6 -5
相关用法
- R语言 rep.int()用法及代码示例
- R语言 replicate()用法及代码示例
- R语言 as.vector()用法及代码示例
- R语言 is.vector()用法及代码示例
- R语言 append()用法及代码示例
- R语言 make.unique()用法及代码示例
- R语言 replace()用法及代码示例
- R语言 seq()用法及代码示例
- R语言 diff()用法及代码示例
- R语言 median()用法及代码示例
- R语言 sign()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 substring()用法及代码示例
- R语言 str_detect()用法及代码示例
- R语言 as.factor()用法及代码示例
- R语言 sort()用法及代码示例
- R语言 range()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Replicate elements of vector in R programming – rep() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。