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
相关用法
- R语言 rep.int()用法及代码示例
- R语言 arrayInd()用法及代码示例
- R语言 word()用法及代码示例
- R语言 get()用法及代码示例
- R语言 curve()用法及代码示例
- R语言 signif()用法及代码示例
- R语言 strtrim()用法及代码示例
- R语言 exists()用法及代码示例
- R语言 gl()用法及代码示例
- R语言 polygon()用法及代码示例
- R语言 seq_len()用法及代码示例
- R语言 seq.int()用法及代码示例
- R语言 rgb()用法及代码示例
- R语言 colorRampPalette()用法及代码示例
- R语言 topo.colors()用法及代码示例
- R语言 cm.colors()用法及代码示例
- R语言 terrain.colors()用法及代码示例
- R语言 length()用法及代码示例
- R语言 charToRaw()用法及代码示例
- R语言 deg2rad()用法及代码示例
- R语言 rad2deg()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Replicating a Value to the Specified Length in R Programming – rep_len() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。