R/censor.R

Defines functions censor

Documented in censor

censor = function(V, left = 0, right = 100) {
  V[V < left] = 0.0000000000001
  V[V > right] = right
  return(V)
}

Try the agrmt package in your browser

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

agrmt documentation built on Jan. 5, 2024, 3:01 a.m.