R/func.entropy.R

#######################################################################
##
## Function: entropy helpers
## Author  : Jonathan Wand <wand(at)stanford.edu>
##           http://wand.stanford.edu
##
#######################################################################

  entropy.max <- function(n.cat) {
    p <- rep(1/n.cat,n.cat)
    return( -sum( p*log(p)))
  }
    
  entropy.calc <- function(p) {
    p <- p[ p > 0]
    -sum(p*log(p))
  }

Try the anchors package in your browser

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

anchors documentation built on May 2, 2019, 6:59 a.m.