Convert to/from NA
Convert vector to/from NA
NA2x(s, x = 0)
s
: The input vector (of arbitrary class)x
: The elements to transform into NA
resp. what to transform NA
into.A vector with same dimension and class as s
.
##' x2NA(1:10, 1:5) NA2x(x2NA(c(1:10),5),5)##'
Klaus K. Holst