R/getd1d2.R

Defines functions getd1d2

Documented in getd1d2

#' A function to get the d1d2 identifier
#' @param dat the data frame containing d1 and d2 entries
#' @return a vector of d1d2 identifiers
getd1d2 = function(dat){
    apply(dat[, c("d1", "d2")], 1, paste, collapse = "_")
}
openanalytics/BIGL documentation built on July 7, 2023, 7:49 a.m.