Numeric vector with currency format
Numeric vector with currency format
currency(x, symbol, digits, format = "f", big.mark = ",", ...) ## Default S3 method: currency( x, symbol = "$", digits = 2L, format = "f", big.mark = ",", ..., sep = "" ) ## S3 method for class 'character' currency( x, symbol = get_currency_symbol(x), digits = max(get_digits(x)), format = "f", big.mark = ",", ... )
x |
a numeric vector. |
symbol |
currency symbol |
digits |
an integer to indicate the number of digits of the percentage string. |
format |
format type passed to |
big.mark |
thousands separator |
... |
additional parameters passed to |
sep |
separator between symbol and value |
currency(200000)
currency(200000, "\U20AC")
currency(1200000, "USD", sep = " ")
currency(1200000, "USD", format = "d", sep = " ")
currency("$ 120,250.50")
currency("HK$ 120,250.50", symbol = "HK$")
currency("HK$ 120, 250.50")Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.