R语言:小数点位数的设置

作者: Bioconductor | 来源:发表于2016-10-30 22:28 被阅读129次

    R语言中对小数点的位数的设置

    经常用数据分析,有时不同的文件的小数位数不一样,但是我们可以让它们的位数保持一致的,下面的介绍就是设置小数位数。

    使用options函数

    > options(digits) 
    
    

    默认为7位

    > a=0.234333323#9位
    > a
    [1] 0.2343333
    

    下面开始设置下

    > options(digits=3)
    > a=0.34434434#8位
    > a
    [1] 0.344
    
    
    
    
    
    

    看最大的位数

    > options(digits=27)
    Error in options(digits = 27) : 'digits'参数不对,可用0...22
    > options(digits=20)
    > options(digits=22)
    > options(digits=23)
    Error in options(digits = 23) : 'digits'参数不对,可用0...22
    

    从上面知道,最多是22位的,下面来实验下。

    > a = 0.111222333444555666777888999#27位
    > options(digits=22)
    > a
    [1] 0.11122233344455566
    

    是的,它的最大位数是22位。

    相关文章

      网友评论

        本文标题:R语言:小数点位数的设置

        本文链接:https://www.haomeiwen.com/subject/cevuuttx.html