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