R/entropyML.R

Defines functions entropyML

Documented in entropyML

entropyML <-
function(cellCounts, unit = unit){
  hatTheta <- thetaML(cellCounts)
  hatTheta <- hatTheta[hatTheta != 0]
  
  if(unit == "bit") logHatTheta <- log2(hatTheta) else
    if(unit == "ban") logHatTheta <- log10(hatTheta) else
      if(unit == "nat") logHatTheta <- log(hatTheta)# else
  #stop("Unknown Entropy Unit") #match.arg
  
  ans <- - sum(hatTheta*logHatTheta)
  return(ans)
}

Try the synRNASeqNet package in your browser

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

synRNASeqNet documentation built on May 2, 2019, 6:01 a.m.