R
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.
I have been working on my Bayesian statistics skills recently. In particular, I
have been reading David Robinson’s lovely
Introduction to Empirical Bayes: Examples from Baseball Statistics and watching Rasmus Bååth’s
delightful three-part
Video Introduction to Bayesian Data Analysis,
notable amongst other videos, courses, and textbooks. I have much yet to learn,
but my past experience with statistics has taught me that I understand concepts
most thoroughly by actually implementing them. Thus,…