Since Thomas Lin Pedersen took over
gganimate, I’ve been building
animations. Mostly what I’ve built is not for any particular data visualization
purpose. My motivations vary, but have included
When aggregating data, it is not uncommon to need to combine datasets
containing identical non-key variables in varying states of completeness. There
are various ways to accomplish this task. One possibility an coalescing join, a
join in which missing values in x
are filled with matching values from y
.
Such behavior does not exist in current dplyr joins, though it has been
discussed, and so may someday.
For now, let’s build an coalesce_join
function.