replace_na.Rd
Replace NA by something appropriate
replace_na(object, by)
A vector or matrix or list or dataframe or array
Something appropriate to replace by
Object after NA are replaced
replace_na(c(1, 2, NA, 4), 3)#> [1] 1 2 3 4