Learn R Programming

tidytable (version 0.10.2)

drop_na.: Drop rows containing missing values

Description

Drop rows containing missing values

Usage

drop_na.(.df, ...)

Arguments

.df

A data.frame or data.table

...

Optional: A selection of columns. If empty, all variables are selected. tidyselect compatible.

Examples

Run this code
df <- data.table(
  x = c(1, 2, NA),
  y = c("a", NA, "b")
)

df %>%
  drop_na()

df %>%
  drop_na(x)

df %>%
  drop_na(where(is.numeric))

Run the code above in your browser using DataLab