R/combn2.R

Defines functions combn2

Documented in combn2

combn2 <-
function(x){
  if (length(x)<2)
    return(x)
  else
    return(combn(x,2))
}
isubirana/compareGroups documentation built on Jan. 31, 2024, 9:19 p.m.