在R语言计算过程中,当大数相乘时,默认显示科学计数结果,如
8888888 * 6666666 = 5.925926e+13
那么如何关闭科学计数呢?
方法1:关闭某个变量
format(x, scientific = F) # 关闭
format(x, scientific = T) # 开启
方法2:全局关闭
options(scipen = 999) # 关闭
options(scipen = 0) # 开启
在R语言计算过程中,当大数相乘时,默认显示科学计数结果,如
8888888 * 6666666 = 5.925926e+13
那么如何关闭科学计数呢?
方法1:关闭某个变量
format(x, scientific = F) # 关闭
format(x, scientific = T) # 开启
方法2:全局关闭
options(scipen = 999) # 关闭
options(scipen = 0) # 开启