R/bitimp.R

Defines functions bit.importance

Documented in bit.importance

bit.importance <- function(actives, background) {
  bs.actives <- bit.spectrum(actives)
  bs.background <- bit.spectrum(background)

  m <- length(actives)
  n <- length(background)
  pa <- (m*bs.actives+bs.background)/(m+1)
  pb <- (n*bs.background+bs.actives)/(n+1)

  kl <- pa * log(pa/pb) + (1-pa) * log( (1-pa)/(1-pb) )
  kl[is.nan(kl)] <- NA
  return(kl)
}
CDK-R/fingerprint documentation built on Oct. 23, 2022, 1:34 p.m.