insertvec {GEOmap} | R Documentation |
Insert a set of values in a vector
Description
Inserting values in a vector at specific index locations
Usage
insertvec(v, ind, val)
Arguments
v |
vector |
ind |
ndex locations where val is inserted |
val |
some vector of insertion, maybe NA |
Details
The vector is parsed out and val values are inserted where after the index values provided.
Value
v |
new vector with val inserted after the index |
Author(s)
Jonathan M. Lees<jonathan.lees@unc.edu>
Examples
x = 1:20
insertvec(x, c(4,17) , NA)
[Package GEOmap version 2.5-11 Index]