R/combn2.R

Defines functions combn2

Documented in combn2

combn2 <-
function(x){
  if (length(x)<2)
    return(x)
  else
    return(combn(x,2))
}

Try the compareGroups package in your browser

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

compareGroups documentation built on Oct. 12, 2023, 1:08 a.m.