| drop_na_rows {cytominer} | R Documentation | 
Drop rows that are NA in all specified variables.
Description
drop_na_rows drops rows that are NA in all specified variables.
Usage
drop_na_rows(population, variables)
Arguments
| population | tbl with grouping (metadata) and observation variables. | 
| variables | character vector specifying observation variables. | 
Value
population without rows that have NA in all specified variables.
Examples
population <- tibble::tibble(
  Metadata_group = c(
    "control", "control", "control", "control",
    "experiment", "experiment", "experiment", "experiment"
  ),
  Metadata_batch = c("a", "a", "b", "b", "a", "a", "b", "b"),
  AreaShape_Area = c(10, 12, NA, 16, 8, 8, 7, 7),
  AreaShape_Length = c(2, 3, NA, NA, 4, 5, 1, 5)
)
variables <- c("AreaShape_Area", "AreaShape_Length")
drop_na_rows(population, variables)
[Package cytominer version 0.2.2 Index]