Skip to contents

Convenience wrapper around base::format() with sensible Czech-friendly defaults (thin space as group separator, . as decimal mark, no scientific notation).

Usage

numeric_format(number)

Arguments

number

Numeric vector.

Value

A character vector of formatted numbers.

Examples

numeric_format(c(1234567, 89.5))
#> [1] "1 234 567.0" "       89.5"