powered by
A convenient way to replace NAs by group.
na_replace_grouped(df, group_by_cols = NULL, ...)
A `data.frame` object with `NA`s replaced.
A data.frame object for which grouped NA replacement is desired.
The column(s) used to use for the grouping.
Other arguments to `na_replace`
test2 <- data.frame(A=c("A","A","A","B","B","B"), B=c(NA,5,2,2,NA,2)) head(na_replace_grouped(test2,"A",how="value","Replaced"))
Run the code above in your browser using DataLab