R/tidyverse.R
remove_quiet.Rd
Remove empty rows and columns
remove_quiet(df, ...)
data frame
additional arguments to pass to janitor::remove_empty()
janitor::remove_empty()
dplyr::tibble( x = c(1, 2, NA), y = c(NA, NA, NA)) |> remove_quiet() #> # A tibble: 2 × 1 #> x #> <dbl> #> 1 1 #> 2 2