Learn R Programming

tidytable (version 0.8.0)

coalesce.: Coalesce missing values

Description

Fill in missing values in a vector by pulling successively from other vectors.

Usage

coalesce.(...)

Arguments

...

Input vectors. Supports dynamic dots.

Examples

Run this code
# Use a single value to replace all missing values
x <- sample(c(1:5, NA, NA, NA))
coalesce.(x, 0)

# Or match together a complete vector from missing pieces
y <- c(1, 2, NA, NA, 5)
z <- c(NA, NA, 3, 4, 5)
coalesce.(y, z)

# Supply lists with dynamic dots
vecs <- list(
  c(1, 2, NA, NA, 5),
  c(NA, NA, 3, 4, 5)
)
coalesce.(!!!vecs)

Run the code above in your browser using DataLab