These functions are kept for backward compatibility; you should switch
to label_scientific()
for new code.
Usage
scientific_format(
digits = 3,
scale = 1,
prefix = "",
suffix = "",
decimal.mark = ".",
trim = TRUE,
...
)
scientific(
x,
digits = 3,
scale = 1,
prefix = "",
suffix = "",
decimal.mark = ".",
trim = TRUE,
...
)
Arguments
- digits
Number of digits to show before exponent.
- scale
A scaling factor:
x
will be multiplied byscale
before formatting. This is useful if the underlying data is very small or very large.- prefix, suffix
Symbols to display before and after value.
- decimal.mark
The character to be used to indicate the numeric decimal point.
- trim
Logical, if
FALSE
, values are right-justified to a common width (seebase::format()
).- ...
Other arguments passed on to
base::format()
.