NAtoZero {reporttools} | R Documentation |
Change NAs in a vector into a given value.
Description
Extract all the missing values in a vector and turn them into a given value.
Usage
NAtoZero(v, value = 0)
Arguments
v |
Vector. |
value |
Value to be given to the missing valus. |
Value
Updated vector.
Author(s)
Kaspar Rufibach (maintainer), kaspar.rufibach@gmail.com,
http://www.kasparrufibach.ch
Examples
set.seed(1977)
vec <- sample(c(round(runif(10, 1, 3)), rep(NA, 10)))
NAtoZero(vec)
[Package reporttools version 1.1.3 Index]