Nothing
# check the estimator for the mutual information.
check.mi.estimator = function(estimator, data) {
# check which type of data we are dealing with.
type = data.type(data)
if (!missing(estimator) && !is.null(estimator)) {
check.label(estimator, choices = available.mi,
labels = mi.estimator.labels, argname = "mutual information estimator")
# check if it's the right estimator for the data (discrete, continuous).
if ((type %!in% discrete.data.types) &&
(estimator %in% available.discrete.mi))
stop("estimator '", estimator, "' may only be used with discrete data.")
if ((type != "continuous") && (estimator %in% available.continuous.mi))
stop("estimator '", estimator, "' may only be used with continuous data.")
return(estimator)
}#THEN
else {
if (type %in% discrete.data.types)
return("mi")
else
return("mi-g")
}#ELSE
}#CHECK.MI.ESTIMATOR
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.