I was always taught that for numbers 1,2,3 and 4 you round DOWN and for 5,6,7,8 and 9 you round UP. So can someone please explain to me why when using round
or signif
in R on 6.5 it rounds it down to 6??
round(6.5)
[1] 6
signif(6.5)
[1] 6
i need my values to round up when it gives a .5 number. Can someone please tell me how to do this?