Skip to contents

Export the first non-NA value for each cell in rowwise fashion

Usage

fill_na_vars(...)

Arguments

...

a prioritised selection of vectors/variables of same length

Value

vector

Examples

fill_na_vars(c(1:3,NA,NA),c(2,NA,3:5))
#> [1] 1 2 3 4 5