This function is a low-level helper that powers many of the labelling functions. You should generally not need to call it directly unless you are creating your own labelling function.
number(x, accuracy = NULL, scale = 1, prefix = "", suffix = "", big.mark = " ", decimal.mark = ".", trim = TRUE, ...)
| x | A numeric vector to format. |
|---|---|
| accuracy | A number to round to. Use (e.g.) Applied to rescaled data. |
| scale | A scaling factor: |
| prefix | Symbols to display before and after value. |
| suffix | Symbols to display before and after value. |
| big.mark | Character used between every 3 digits to separate thousands. |
| decimal.mark | The character to be used to indicate the numeric decimal point. |
| trim | Logical, if |
| ... | Other arguments passed on to |
A character vector of length(x).