replace_na.Rd
Replace a NA value
replace_na(x, na_value)
A vector
A single value, that will replace NA values
A numeric value
replace_na(c(2,2,NA,NA,NA),1) #> [1] 2 2 1 1 1