janitor (version 1.1.1)

remove_empty: Remove empty rows and/or columns from a data.frame.

Description

Removes all rows and/or columns from a data.frame that are composed entirely of NA values.

Usage

remove_empty(dat, which = c("rows", "cols"))

Arguments

dat

the input data.frame.

which

one of "rows", "cols", or c("rows", "cols"). Where no value of which is provided, defaults to removing both empty rows and empty columns, declaring the behavior with a printed message.

Value

Returns the data.frame without its missing rows or columns.

Examples

Run this code
# NOT RUN {
# not run:
# dat %>% remove_empty("rows")
# }

Run the code above in your browser using DataCamp Workspace