7

我想知道如何使用 R 处理金钱。这意味着,做算术,打印格式良好的数字等等。

例如我有一些价值观

1.222.333,37 
1.223.444,88

我可以将其转换为数字并将其舍入,去掉美分,但没有更好的模式可以使用吗?我确实尝试了格式方法,例如:

format(141103177058,digits=3,small.interval=3,decimal.mark='.',small.mark=',')

但没有成功。任何提示或想法?

4

3 回答 3

8

scales 包有一个功能: dollar_format()

install.packages("scales")
library(scales)

muchoBucks <- 15558.5985121
dollar_format()(muchoBucks)

[1] "$15,558.60"
于 2016-03-29T21:36:20.193 回答
5

这个如何:

printCurrency <- function(value, currency.sym="$", digits=2, sep=",", decimal=".") {
  paste(
        currency.sym,
        formatC(value, format = "f", big.mark = sep, digits=digits, decimal.mark=decimal),
        sep=""
  )
}

printCurrency(123123.334)
于 2014-05-23T16:11:06.967 回答
4

假设我们有两个特定的字符值(货币):

s1 <- "1.222.333,37"
s2 <- "1.223.444,88"

首先,我们希望 R 显示具有适当位数的数值:

# controls representation of numeric values
options(digits=10)

将货币转换为数字可以这样实现:

# where s is character
moneyToDouble <- function(s){
  as.double(gsub("[,]", ".", gsub("[.]", "", s)))
}

x <- moneyToDouble(s1) + moneyToDouble(s2)
x    

将数字打印为货币:

# where x is numeric
printMoney <- function(x){
  format(x, digits=10, nsmall=2, decimal.mark=",", big.mark=".")
}

printMoney(x)
于 2012-12-25T09:17:38.617 回答