13

是否有允许使用标准单位前缀(Kilo、Mega 等)格式化数字(整数)的 R 函数(或任何包),所以

10 -> 10
1000 -> 1K
0.01 - > 10m

等等......我可以自己做,但我不想重新发明轮子。

4

5 回答 5

17
require(sitools)
f2si(80000)
 [1] "80 k"
f2si(8E12)
 [1] "8 T"

如果不使用 SI 前缀,它会附加两个空格,这似乎非常简单:

f2si(80)
[1] "80  "

该函数易于修改以包括舍入。我还解决了附加空格的问题。

f2si2<-function (number,rounding=F) 
{
    lut <- c(1e-24, 1e-21, 1e-18, 1e-15, 1e-12, 1e-09, 1e-06, 
        0.001, 1, 1000, 1e+06, 1e+09, 1e+12, 1e+15, 1e+18, 1e+21, 
        1e+24)
    pre <- c("y", "z", "a", "f", "p", "n", "u", "m", "", "k", 
        "M", "G", "T", "P", "E", "Z", "Y")
    ix <- findInterval(number, lut)
    if (lut[ix]!=1) {
        if (rounding==T) {
         sistring <- paste(round(number/lut[ix]), pre[ix])
        }
        else {
         sistring <- paste(number/lut[ix], pre[ix])
        } 
    }
    else {
        sistring <- as.character(number)
    }
    return(sistring)
}

f2si2(12345)
 [1] "12.345 k"
f2si2(12345,T)
 [1] "12 k"
于 2012-07-05T09:01:23.530 回答
11

我带着同样的问题来到这里。感谢罗兰的回答;我在他的代码的基础上做了一些改动:

  • 当 rounding=FALSE 时允许指定有效数字(默认为 6,就像 'signif' 内置函数)
  • 值低于 1e-24 时不会抛出错误
  • 为 1e27 以上的值输出科学计数法(无单位)

希望这会有所帮助。

f2si<-function (number, rounding=F, digits=ifelse(rounding, NA, 6)) 
{
    lut <- c(1e-24, 1e-21, 1e-18, 1e-15, 1e-12, 1e-09, 1e-06, 
        0.001, 1, 1000, 1e+06, 1e+09, 1e+12, 1e+15, 1e+18, 1e+21, 
        1e+24, 1e+27)
    pre <- c("y", "z", "a", "f", "p", "n", "u", "m", "", "k", 
        "M", "G", "T", "P", "E", "Z", "Y", NA)
    ix <- findInterval(number, lut)
    if (ix>0 && ix<length(lut) && lut[ix]!=1) {
        if (rounding==T && !is.numeric(digits)) {
            sistring <- paste(round(number/lut[ix]), pre[ix])
        }
        else if (rounding == T || is.numeric(digits)) {
            sistring <- paste(signif(number/lut[ix], digits), pre[ix])
        }
        else {
            sistring <- paste(number/lut[ix], pre[ix])
        } 
    }
    else {
        sistring <- as.character(number)
    }
    return(sistring)
}

f2si(12345)
 [1] "12.345 k"
f2si(12345, T)
 [1] "12 k"
f2si(10^31)
 [1] "1e+31" # (previous version would output "1e+07 Y"
f2si(10^-25)
 [1] "1e-25" # (previous version would throw error)
f2si(123456789)
 [1] "123.457 M" # (previous version would output ""123.456789 M"
f2si(123456789, digits=4)
 [1] "123.5 M" # (note .456 is rounded up to .5)

从这段代码中,也很容易为常用的金融单位(K、MM、Bn、Tr)编写类似的函数。

于 2012-10-26T20:28:32.797 回答
3

使用case_whendplyr 进行矢量化很简单,而且看起来更容易:

library(dplyr)

si_number = function(x, digits) {

    compress = function(x, n) {
        signif(x * 10^(-n), digits)
    }

    case_when(
        x >= 1e6   ~ paste0(compress(x, 6), "M"),
        x >= 1000  ~ paste0(compress(x, 3), "k"),
        x >= 1     ~ as.character(compress(x, 0)),
        x >= 0.001 ~ paste0(compress(x, -3), "m"),
        x >= 1e-6  ~ paste0(compress(x, -6), "u")
    )
}
于 2019-11-28T10:32:26.873 回答
2

我正在寻找千(K)、百万(M)和十亿(B)数字转换器。我修改了这个例程以获取一个数字向量/单个数字来吐出所需的输出。

CurrencyFormat <-function (number,rounding=F) 
{
    first <- TRUE
    lut <- c( 1, 1000, 1000000, 1000000000,1000000000000 )
    pre <- c("", "K", "M", "B", "T")
    if (length(number) > 1) {
        for (cnt in 1:length(number)){        
            ix <- findInterval(number[cnt], lut)
            if (ix != 0 | ix != 1){
                if (rounding==T) {
                    sistring <- paste(round(number[cnt]/lut[ix]), pre[ix])
                }
                else {
                    sistring <- paste(signif(number[cnt]/lut[ix],digits=5), pre[ix])
                }
                if (first){
                    tnumber <- sistring
                    fnumber <- tnumber
                    first <- FALSE
                }
                else
                    fnumber <- append(fnumber, sistring)
            }
            else {
                sistring <- number[cnt]
                if (first){
                    tnumber <- sistring
                    fnumber <- tnumber
                    first <- FALSE
                }
                else
                    fnumber <- append(fnumber, sistring)
            }
        }
        return(fnumber)
    }
    else{
        ix <- findInterval(number, lut)
        if (ix != 0 | ix != 1){
            if (rounding==T) {
                sistring <- paste(round(number/lut[ix]), pre[ix])
            }
            else {
                sistring <- paste(signif(number/lut[ix],digits=5), pre[ix])
            }
            return(sistring)
        }    
        else
            return(number)
    }
}

例子:

CurrencyFormat(1.25,F)
[1] "1.25 "

CurrencyFormat(1000.25,F)
[1] "1.0002 K"

CurrencyFormat(c( 1,45,1234, 4.36e+06, 2.84e+04, 2.01e+06),F)
[1] "1 "      "45 "     "1.234 K" "4.36 M"  "28.4 K"  "2.01 M" 
于 2015-04-29T00:21:34.780 回答
1

略微修改版本以考虑负数:

f2si<-function (number, rounding=F, digits=ifelse(rounding, NA, 6)) 
{
mysign <- ""
if (number<0) {
    mysign <- "-"
}
number <- abs(number)
lut <- c(1e-24, 1e-21, 1e-18, 1e-15, 1e-12, 1e-09, 1e-06, 
    0.001, 1, 1000, 1e+06, 1e+09, 1e+12, 1e+15, 1e+18, 1e+21, 
    1e+24, 1e+27)
pre <- c("y", "z", "a", "f", "p", "n", "u", "m", "", "k", 
    "M", "G", "T", "P", "E", "Z", "Y", NA)
ix <- findInterval(number, lut)
if (ix>0 && ix<length(lut) && lut[ix]!=1) {
    if (rounding==T && !is.numeric(digits)) {
        sistring <- paste(mysign,mysign,round(number/lut[ix]), pre[ix])
    }
    else if (rounding == T || is.numeric(digits)) {
        sistring <- paste(mysign,signif(number/lut[ix], digits), pre[ix],sep="")
    }
    else {
        sistring <- paste(mysign,number/lut[ix], pre[ix],sep="")
    } 
} else {
    sistring <- paste(mysign,as.character(number),sep="")
}
return(sistring)

}

于 2014-05-02T03:02:20.830 回答