Base R Equivalents of dplyr Functions Part 1 – coalesce
The dplyr coalesce function is incredibly useful and similar to the SQL COALESCE function. Given a set of vectors, it finds and keeps the first non-NA value at each position. For example, the following code returns the vector c(1, 2, 3, 4).
lib... [Read more...]