Nothing
#' Mask outliers on some faces
#'
#' This function will block out the top 0.1 percent of the faces
#' @param Energy_values energy density values on faces
#' @param X percentile above which to remove
#'
#'
#' remove_outliers()
#' @noRd
remove_outliers <- function(Energy_values, X) {
DNEs <- Energy_values$DNE_Values
FAs <- Energy_values$Face_Areas
Q <- quantile(DNEs, probs=c(X))
OutlierList <- which(DNEs > Q)
DNEs[OutlierList] <- 0
out <- data.frame(DNE_Values=DNEs, Face_Areas=FAs)
return(out)
}
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.