R/evalCOSDIST.R

Defines functions evalCOSDIST

Documented in evalCOSDIST

#' Compare two sets of column data (automatic matching)
#'
#' @export

evalCOSDIST = function(truth, observed)
{
  cor_identified = cor(truth, observed)
  cos_dist = (1-diag(cor_identified))/2
  return(cos_dist)
}
ayurovsky/rnaGinesis documentation built on Dec. 19, 2021, 6:36 a.m.