R/format_dec.R

Defines functions format_dec

Documented in format_dec

#' Formate les nombres decimaux au format texte
#'
#' @param x vecteur
#'
#' @return
#' @export
#'
#' @examples
#' format_dec(102.65)
format_dec <- function(x) {
  return(format(x,
                decimal.mark = ",",
                big.mark = "."))
}
ggwinter/eptb2022 documentation built on Feb. 19, 2022, 7:17 p.m.