I\'m trying to do a Last Observation Carried Forward operation on some poorly formatted data using dplyr and tidyr. It isn\'t working as I\'d expe
dplyr
tidyr
Another option is to use do from dplyr:
do
df3 <- df %>% group_by(id) %>% do(fill(.,email))