Closed catalamarti closed 1 month ago
In many places we have the following code:
if (x |> dplyr::ungroup() |> utils::head(1) |> dplyr::tally() |> dplyr::pull() == 0) { }
We could have a simpler function:
if (omopgenerics::isTableEmpty(x)) return(...)
In many places we have the following code:
We could have a simpler function: