`y <- replace_na(df$x, 0)` works `y <- df %>% replace_na(x, 0)` does not. Seems like a no-brainer to have this pipeable...or is it a brainer? ;)