#' gets most frequrnt value form a vector
#'
#' @param Value a vector
#' @export
#'
Dir <- function(Value){
Value=as.numeric(names(which.max(table(Value,useNA = "no"))))
return(Value)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.