seq2 {eatTools} | R Documentation |
Sequence generation
Description
Creates a sequence of integers. Modified version of seq
returning an empty vector if the starting point is larger than the end point.
Originally provided by rlang::seq2()
.
Usage
seq2(from, to)
Arguments
from |
The starting value of the sequence. Of length 1. |
to |
The end value of the sequence. Of length 1. |
Value
A numerical sequence
Examples
seq2(from = 1, to = 5)
[Package eatTools version 0.7.6 Index]