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 May 29, 2024, 10:25 a.m.