R/fill_na_vars.R
fill_na_vars.Rd
Export the first non-NA value for each cell in rowwise fashion
fill_na_vars(...)
a prioritised selection of vectors/variables of same length
vector
fill_na_vars(c(1:3,NA,NA),c(2,NA,3:5)) #> [1] 1 2 3 4 5