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