标签: r format
数字的工程符号就像科学符号,但指数必须是3的倍数。这很方便,因为它与公斤,兆,千兆等有关。
163500000 # the number 1.635E8 # scientific notation = what R does 163.5E6 # engineering notation = metric / SI prefix
R是否具有将数字格式化为SI前缀的功能?我只能发现科学记数法。 [有一个函数here,可以追溯到2006年。)