fill_NA_with {dataMojo} | R Documentation |
Fill missing values
fill_NA_with(dt, fill_cols, fill_value)
dt |
input data table |
fill_cols |
filter by this columns |
fill_value |
fill NA with this value |
data table which NAs are filled
data("dt_missing")
fill_NA_with(dt_missing, fill_cols = c("Full_name"), fill_value = "pending")