rm_empty_rows: Remove empty rows

Description Usage Arguments Value See Also Examples

View source: R/misc-utils.R

Description

Remove empty rows

Usage

1
rm_empty_rows(dataframe)

Arguments

dataframe

data.frame object.

Value

A data.frame with rows removed that only contain NA.

See Also

Other NA functions: rm_na

Examples

1
2
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)

hgvandenboorn/hgutils documentation built on Sept. 9, 2019, 2:50 a.m.