R語言中的seq_along()函數用於生成與傳入的參數長度相同的序列。
用法: seq_along(x)
參數:
x:指定參數
範例1:
# R program to illustrate
# seq_along function
# Calling the seq_along() function
seq_along(letters[1:4])
seq_along(letters[0:3])
輸出:
[1] 1 2 3 4 [1] 1 2 3
範例2:
# R program to illustrate
# seq_along function
# Calling the seq_along() function
seq_along(c(1, 2, 3))
seq_along(c(5, 10, 15, 20))
seq_along(c(2, 4))
seq_along(10)
seq_along(2)
輸出:
[1] 1 2 3 [1] 1 2 3 4 [1] 1 2 [1] 1 [1] 1
相關用法
- R語言 expand.grid()用法及代碼示例
- R語言 sum()用法及代碼示例
- R語言 as.name()用法及代碼示例
- R語言 is.name()用法及代碼示例
- R語言 print()用法及代碼示例
- R語言 prod()用法及代碼示例
- R語言 seq_len()用法及代碼示例
- R語言 rainbow()用法及代碼示例
- R語言 length()用法及代碼示例
- R語言 combn()用法及代碼示例
- R語言 gl()用法及代碼示例
- R語言 set.seed()用法及代碼示例
- R語言 sample()用法及代碼示例
- R語言 topo.colors()用法及代碼示例
- R語言 cm.colors()用法及代碼示例
- R語言 terrain.colors()用法及代碼示例
- R語言 sequence()用法及代碼示例
- R語言 pretty()用法及代碼示例
- R語言 rep_len()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R語言 nchar()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 lapply()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Generate a Sequence of Length of the passed Argument in R Programming – seq_along() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。