Displaying 1 result from an estimated 1 matches for "signif3".
Did you mean:
signif
2007 May 14
1
round(#, digits=x) unreliable for x=2 (PR#9682)
...#39;t reported to 2 decimal places 0.90 as
expected
#number <- 0.946251 # when the last reported digit is non-zero it gives expected
behaviour
Round3 <- round(number, digits=3)
Round2 <- round(number, digits=2) #why 0.9 and not 0.90 for 0.897575?
Round1 <- round(number, digits=1)
Signif3 <- signif(number, digits=3)
Signif2 <- signif(number, digits=2) #why 0.9 and not 0.90 0.897575?
Signif1 <- signif(number, digits=1)
Results <- data.frame(Round3, Round2, Round1, Signif3, Signif2, Signif1)