R/na.row.R

Defines functions na.row

Documented in na.row

na.row <- function(mat){
  tmp <- apply(mat,1,function(x){any(is.na(x))})
  return(tmp)
}

Try the GNAR package in your browser

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

GNAR documentation built on April 28, 2023, 1:12 a.m.