#' format_num
#'
#' Formats numbers to the finnish standard.
#' @param x an atomic numerical or character object, typically a vector of
#' real numbers. Any class is discarded, with a warning.
#' @param digits the desired number of digits after the decimal point
#' (format = "f") or significant digits (format = "g", = "e" or = "fg"). If
#' digits is negative, then round to numbers like tens, hundreds or thousands.
#' @param dec he character to be used to indicate the numeric decimal point.
#' @param flag for formatC, a character string giving a format modifier as
#' in Kernighan and Ritchie (1988, page 243) or the C+99 standard. For example
#' "0" pads leading zeros; "-" does left adjustment;
#' "+" ensures a sign in all cases, i.e., "+" for positive numbers
#' @param big.mark used as mark between every big.interval decimals before
#' the decimal point.
#' @param ... add other parameters to formatC like width and small.mark
#' @keywords format, numeric, formatC, round
#' @examples
#' x <- seq(0, 10, by = 0.01)
#' format_num(x)
#' @export
format_num <- function(x, digits = 1, format = "f", dec = ",",
flag = "", big.mark = " ", ...) {
# Transform to numeric, round to 1 decimal, use comma as decimal mark
x <- as.numeric(x)
# Use first round, if digits is negative
if (digits < 0) {
x <- round(x, digits = digits)
digits <- 0
}
# Use formatC
output <- formatC(
x, digits = digits, format = format,
decimal.mark = dec, flag = flag, big.mark = big.mark, ...)
return(output)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.