kmgformat {corto} | R Documentation |
kmgformat - Nice Formatting of Numbers
Description
This function will convert thousand numbers to K, millions to M, billions to G, trillions to T, quadrillions to P
Usage
kmgformat(input, roundParam = 1)
Arguments
input |
A vector of values |
roundParam |
How many decimal digits you want |
Value
A character vector of formatted numebr names
Examples
# Thousands
set.seed(1)
a<-runif(1000,0,1e4)
plot(a,yaxt='n')
kmg<-kmgformat(pretty(a))
axis(2,at=pretty(a),labels=kmg)
# Millions to Billions
set.seed(1)
a<-runif(1000,0,1e9)
plot(a,yaxt='n',pch=20,col="black")
kmg<-kmgformat(pretty(a))
axis(2,at=pretty(a),labels=kmg)
[Package corto version 1.2.4 Index]