df <- data.table(
x = c(1, 2, NA),
y = c(NA, 1, 2)
)
# Using replace_na() inside mutate()
df %>%
mutate(x = replace_na(x, 5))
# Using replace_na() on a data frame
df %>%
replace_na(list(x = 5, y = 0))
Run the code above in your browser using DataLab