在 R 编程中将值复制到指定长度 – rep_len()函数
R 语言中的rep_len()
函数用于复制指定长度的给定值。
Syntax: rep_len(x, length.out)
Parameters:
x: specified value
length.out: specified number of items get printed
示例 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