This function drops NA columns from a specified data frame.

drop_na_columns(data)

Arguments

data

a data frame

Value

tibble

See also

Examples

tibble(nameFirm = 'Goldman Sachs', countSuperHeros = NA, countCriminals = 0, countFinedEmployees = 10) %>% drop_na_columns()