Получение списка чисел в указанном диапазоне в программировании на R - функция seq.int ()
Опубликовано: 17 Февраля, 2022
seq.int() function in R Language is used to return a list of numbers in the specified range.
Syntax: seq.int(from, to, by)
Parameters:
from: specified range from
to: specified range to
by: specified number by which it jumps through returned number
Example 1:
# R program to illustrate# seq.int function # Calling seq.int() functionseq.int(0, 5)seq.int(-2, 6)seq.int(-3, 7)seq.int(-7, 0) |
Выход:
[1] 0 1 2 3 4 5 [1] -2-1 0 1 2 3 4 5 6 [1] -3-2-1 0 1 2 3 4 5 6 7 [1] -7-6-5-4-3-2 -1 0
Example 2:
# R program to illustrate# seq.int function # Calling seq.int() functionseq.int(2, 10, by = 2)seq.int(0, 5, by = 1)seq.int(5, 50, by = 10) |
Выход:
[1] 2 4 6 8 10 [1] 0 1 2 3 4 5 [1] 5 15 25 35 45