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


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


R 語言中的 seq_len() 函數用於生成從 1 到指定數字的序列。

用法: seq_len(x)

參數:
x:指明號碼

範例1:


# R program to illustrate
# seq_len function
  
# Calling the seq_len() function
seq_len(1)
seq_len(3)
seq_len(0)
seq_len(6)

輸出:

[1] 1
[1] 1 2 3
integer(0)
[1] 1 2 3 4 5 6

範例2:


# R program to illustrate
# seq_len function
  
# Creating a vector of length 5
my_vector <- c(5, 6, 1, 13, 7)
  
# Calling seq_len() function
seq_len(length(my_vector))

輸出:

[1] 1 2 3 4 5

相關用法


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