借助rep()
方法,我們可以在 R 編程中複製向量的元素。
用法:rep(x, times)
返回:Returns the replicated vectors.
範例1:
# Using rep() method
x <- rep(1:5)
gfg <- rep(x, 2)
print(gfg)
輸出:
[1] 1 2 3 4 5 1 2 3 4 5
範例2:
# Using rep() method
x <- rep(-10:-5)
gfg <- rep(x, 3)
print(gfg)
輸出:
[1] -10 -9 -8 -7 -6 -5 -10 -9 -8 -7 -6 -5 -10 -9 -8 -7 -6 -5
相關用法
- R語言 rep.int()用法及代碼示例
- R語言 replicate()用法及代碼示例
- R語言 as.vector()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 append()用法及代碼示例
- R語言 make.unique()用法及代碼示例
- R語言 replace()用法及代碼示例
- R語言 seq()用法及代碼示例
- R語言 diff()用法及代碼示例
- R語言 median()用法及代碼示例
- R語言 sign()用法及代碼示例
- R語言 charmatch()用法及代碼示例
- R語言 substring()用法及代碼示例
- R語言 str_detect()用法及代碼示例
- R語言 as.factor()用法及代碼示例
- R語言 sort()用法及代碼示例
- R語言 range()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Replicate elements of vector in R programming – rep() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。