R/odd.R

Defines functions `odd`

`odd` <- function(x) {
  if(x%%2==1) result <- TRUE
  else result <- FALSE
  return(result)
}

Try the HardyWeinberg package in your browser

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

HardyWeinberg documentation built on May 7, 2022, 5:05 p.m.