R 語言中的 rep.int() 函數用於將給定值複製到指定次數。
用法: rep.int(x, times)
參數:
x:指定值
times:指定的值被打印的次數
範例1:
# R program to illustrate
# rep.int function
# Calling the rep.int() function
rep.int(1:2, 2)
rep.int(1:3, 1)
rep.int(0:1, 4)
輸出:
[1] 1 2 1 2 [1] 1 2 3 [1] 0 1 0 1 0 1 0 1
範例2:
# R program to illustrate
# rep.int function
# Calling the rep.int() function
rep.int(c(1, 2), 2)
rep.int(c(1, 2, 3), 3)
rep.int(c(5), 6)
輸出:
[1] 1 2 1 2 [1] 1 2 3 1 2 3 1 2 3 [1] 5 5 5 5 5 5
相關用法
- R語言 rep_len()用法及代碼示例
- R語言 signif()用法及代碼示例
- R語言 seq_len()用法及代碼示例
- R語言 arrayInd()用法及代碼示例
- R語言 word()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 curve()用法及代碼示例
- R語言 strtrim()用法及代碼示例
- R語言 exists()用法及代碼示例
- R語言 gl()用法及代碼示例
- R語言 polygon()用法及代碼示例
- R語言 seq.int()用法及代碼示例
- R語言 rgb()用法及代碼示例
- R語言 colorRampPalette()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- R語言 deg2rad()用法及代碼示例
- R語言 rad2deg()用法及代碼示例
- R語言 lgamma()用法及代碼示例
- R語言 trigamma()用法及代碼示例
- R語言 qcauchy()用法及代碼示例
- R語言 qlogis()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Replicating a Value specified number of times in R Programming – rep.int() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。