Nothing
#' Function to do ceiling at different levels
#'
#' @description This function reads number to round
#'
#' @param x number to round
#' @param level level of ceiling
#'
#' @keywords internal
#' @return numeric
customCeiling <- function(x, customDecimals=1) {
x2<-x*10^customDecimals
ceiling(x2)/10^customDecimals
}
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.