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


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


借助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

相关用法


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