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:
seq. int ( 0 , 5 )
seq. int ( - 2 , 6 )
seq. int ( - 3 , 7 )
seq. int ( - 7 , 0 )
|
Output:
[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:
seq. int ( 2 , 10 , by = 2 )
seq. int ( 0 , 5 , by = 1 )
seq. int ( 5 , 50 , by = 10 )
|
Output:
[1] 2 4 6 8 10
[1] 0 1 2 3 4 5
[1] 5 15 25 35 45
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
25 Jun, 2020
Like Article
Save Article