R/na.zero.R

Defines functions na.zero

Documented in na.zero

#' substitui NAS por zeros
#'
#' @param x x
na.zero <- function(x) {
    ifelse(is.na(x), 0, x)
}
covid19br/now_fcts documentation built on Feb. 10, 2021, 9:42 a.m.