Learn R Programming

sdtm.oak (version 0.1.0)

pseq: Parallel sequence generation

Description

pseq() is similar to seq() but conveniently accepts integer vectors as inputs to from and to, allowing for parallel generation of sequences. The result is the union of the generated sequences.

Usage

pseq(from, to)

Value

An integer vector.

Arguments

from

An integer vector. The starting value(s) of the sequence(s).

to

An integer vector. The ending value(s) of the sequence(s).