tidyr (version 0.7.2)

replace_na: Replace missing values

Description

Replace missing values

Usage

replace_na(data, replace = list(), ...)

Arguments

data

A data frame.

replace

A named list given the value to replace NA with for each column.

...

Additional arguments for methods. Currently unused.

Examples

Run this code
# NOT RUN {
library(dplyr)
df <- tibble(x = c(1, 2, NA), y = c("a", NA, "b"))
df %>% replace_na(list(x = 0, y = "unknown"))
# }

Run the code above in your browser using DataCamp Workspace