當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。