R/fmt.r

Defines functions fmt

#' @export
fmt <- function(x, digits = 0) {
  format(round(x, digits), nsmall = digits, big.mark = ",", scientific = FALSE)
}
wkmor1/voiConsPlan documentation built on May 4, 2019, 7:34 a.m.