我的情节以e符号的形式显示y轴上的值。我应该使用哪个命令来获取数字形式的值。使用的文件中的值是数字形式? 感谢
答案 0 :(得分:43)
要在整个R会话中设置科学记数法的使用,可以使用scipen
选项。从文档(?options
):
‘scipen’: integer. A penalty to be applied when deciding to print
numeric values in fixed or exponential notation. Positive
values bias towards fixed and negative towards scientific
notation: fixed notation will be preferred unless it is more
than ‘scipen’ digits wider.
因此,实质上,这个值决定了触发科学记数法的可能性。因此,为了防止科学记数法,只需使用像999
这样的大正值:
options(scipen=999)
答案 1 :(得分:39)
尝试'格式'功能:
> xx = 100000000000
> xx
[1] 1e+11
> format(xx, scientific=F)
[1] "100000000000"