R/drop_narows.R

Defines functions drop_narows

drop_narows <- 
function(.data, 
         ...)
{
  b <- rowSums(is.na(.data)) != ncol(.data)
  .data[which(b),]
}

Try the lplyr package in your browser

Any scripts or data that you put into this service are public.

lplyr documentation built on May 2, 2019, 11:58 a.m.