remove_na_rows | R Documentation |
Remove rows that has any NA
values
remove_na_rows(df)
df |
A data.frame |
A data.frame with complete cases
df <- data.frame(x = c(1, 2, NA),
y = c(1, NA, 3))
remove_na_rows(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.