Learn R Programming

manymodelr (version 0.3.9)

na_replace_grouped: Replace NAs by group

Description

A convenient way to replace NAs by group.

Usage

na_replace_grouped(df, group_by_cols = NULL, ...)

Value

A `data.frame` object with `NA`s replaced.

Arguments

df

A data.frame object for which grouped NA replacement is desired.

group_by_cols

The column(s) used to use for the grouping.

...

Other arguments to `na_replace`

Examples

Run this code
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