R/fixed_digits.R

Defines functions fixed_digits

Documented in fixed_digits

#' @title Print number with fixed digits
#' @export
fixed_digits <- function(xs, n = 2) {
  formatC(xs, digits = n, format = "f")
}
dietrichson/sashaUseful documentation built on Sept. 16, 2019, 3:31 p.m.