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