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


R語言 seq_along()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Generate a Sequence of Length of the passed Argument in R Programming – seq_along() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。