rm_empty_rows | R Documentation |
Remove empty rows
rm_empty_rows(dataframe)
dataframe |
|
A data.frame
with rows removed that only contain NA
.
Other NA functions:
rm_na()
data <- rbind(c(1,2,3), c(1, NA, 4), c(4,6,7), c(NA, NA, NA), c(4, 8, NA)) rm_empty_rows(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.