当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。