insert {heemod} | R Documentation |
Insert Elements in Vector
Description
Insert a vector in another vector.
Usage
insert(x, pos, what)
Arguments
x |
A vector (or a list). |
pos |
Integer. Insert after which elements? |
what |
Vector of elements to insert. |
Details
To insert an element at the beginning use a pos
value of 0.
Duplicated positions are not allowed.
Value
A vector.
Examples
heemod:::insert(letters, c(0, 5, 26), c("xxx", "yyy"))
[Package heemod version 1.1.0 Index]