R/Rcomma.R

Defines functions Rcomma_usd

## STUPID UTILITY BC I'M LAZY ##

Rcomma_usd <- function(x, prefix = "$", accuracy = 1.0, ...) {
    library(scales)
    res <- comma(x = x, prefix = prefix, accuracy = accuracy, ...)
    return(res)
}
EccRiley/Riley documentation built on Feb. 15, 2024, 9:29 a.m.