R/chkVariation.R

Defines functions chkVariation

chkVariation <- function(x)
## Checks the presence of variation in vector 'x'. Returns FALSE if there is no
## variation.
{
    return(length(unique(x)) > 1)
}

Try the gyriq package in your browser

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

gyriq documentation built on May 2, 2019, 2:39 a.m.