R/Boundary.R

Defines functions Boundary

Boundary <-
function(X, min, max){
  X <- ifelse(X < min | X > max,  NA, X)
  return(X)
}

Try the gazepath package in your browser

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

gazepath documentation built on Feb. 9, 2020, 5:07 p.m.