Convert numeric value to a string abbreviation with K, M, B for Thousand, Million & Billion
num2str.Rd
Convert numeric value to a string abbreviation with K, M, B for Thousand, Million & Billion
Usage
num2str(
x,
sf = 2,
outtype = c("abbreviated", "with_suffix", "rounded"),
suffix_lb = "K"
)
Arguments
- x
num
- sf
num
significant figures to round to- outtype
chr
Format of the outtypeabbreviated
takes the formXX
where X are digitswith_suffix
takes the formXXS
where X are digits and S is the suffixrounded
takes the formXX.XX
rounded withsf
sig figs
See also
num2str_vec
Other rounding:
magnitude_order()
,
magnitude_triplet()
,
num2str_vec()
,
num_chr_suffi
,
round_to()
,
size()
,
unit_find()
,
unit_modify()
,
unit_modify_vec()
,
unit_string()