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


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


R 语言中的 rep_len() 函数用于以指定长度复制给定值。

用法: rep_len(x, length.out)

参数:
x:指定值
长度.输出:打印指定数量的项目

范例1:


# R program to illustrate
# rep_len function
  
# Calling the rep_len() function
rep_len(1:5, 5)
rep_len(1:5, 7)
rep_len(1:5, 10)

输出:

[1] 1 2 3 4 5
[1] 1 2 3 4 5 1 2
[1] 1 2 3 4 5 1 2 3 4 5

范例2:


# R program to illustrate
# rep_len function
  
# Calling the rep_len() function
rep_len(c(1, 2), 4)
rep_len(c(1, 2, 3), 5)
rep_len(c(5), 6)

输出:

[1] 1 2 1 2
[1] 1 2 3 1 2
[1] 5 5 5 5 5 5

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Replicating a Value to the Specified Length in R Programming – rep_len() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。