R/fxwins.R

Defines functions fxwins

fxwins <- function(x, lo = 300, up = 3000)
{
  # convert latencies < 300 to 300 and >3000 to 3000
  x[x < lo] <- lo
  x[x > up] <- up
  x
}

Try the IATscores package in your browser

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

IATscores documentation built on July 2, 2020, 3:24 a.m.