#' no_scientific function
#'
#' @param x some numeric scalar
#'
#' @return the number x as a character vector without scientific notation
#' @export
#'
#' @examples
#' change 1e6 to 1000000
#' num<-no_scientific(1e6)
#'
no_scientific<-function(x){
num=format(x,scientific = F, trim = T)
return (num)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.