Nothing
#' Anomaly index.
#'
#' Calculates an index that looks for the best projection of
#' observations that are outside a pre-determined p-D ellipse.
#'
#' @export
anomaly_index <- function() {
function(mat, ell2d, ellmu2d) {
mat_tab <- #mean(mahal_dist(mat, ell2d))
mean(mahalanobis(mat, center=ellmu2d, cov=ell2d))
}
}
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.