dollar_format(scales)
dollar_format()所属R语言包:scales
Currency formatter: round to nearest cent and display dollar sign.
货币格式化:舍入至最接近的仙位数,显示美元符号。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The returned function will format a vector of values as currency. Values are rounded to the nearest cent, and cents are displayed if any of the values has a non-zero cents and the largest value is less than largest_with_cents which by default is 100000.
返回的函数格式化货币值的向量。值均调整至最接近的仙位数,并美分的任何值显示,如果有一个非零美分,和最大的值是小于largest_with_cents默认为100000。
用法----------Usage----------
dollar_format(largest_with_cents = 1e+05)
dollar(x)
参数----------Arguments----------
参数:largest_with_cents
the value that all values of x must be less than in order for the cents to be displayed
的值,该值所有x值必须小于为了要显示的美分
参数:x
a numeric vector to format
格式化一个数值向量
值----------Value----------
a function with single paramater x, a numeric vector, that returns a character vector
单paramater数值向量,X,A,返回一个字符向量的功能
实例----------Examples----------
dollar_format()(c(100, 0.23, 1.456565, 2e3))
dollar_format()(c(1:10 * 10))
dollar(c(100, 0.23, 1.456565, 2e3))
dollar(c(1:10 * 10))
dollar(10^(1:8))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|