# entropyMethods.R
#`
#`
#`
calculateDefaultEntrop <- function() {
x_log = ifelse(is.finite(log(x, base = logbase)), log(x, base=logbase), 0)
entropy = -sum(x * x_log)
return(entropy)
}
calculateMLEntropy <- function(x, method) {
}
calculateMMEntropy <-
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.