Round | R Documentation |
This is an ordinary rounding function, so called round half away from zero
Round(x, n = 0)
x |
numeric to be rounded |
n |
indicating decimal digits |
The function round
in R base rounds to the even number, i.e. round(0.5)
is 0 not 1.
If you want rounding 0.5 be 1, you can use this Round
function.
This function is for the consistency with other software like MS-Excel, SAS.
ordinarily rounded value
Kyun-Seop Bae <k@acr.kr>
See wikipedia subject "Rounding"
(x = 1:10 - 0.5) Round(x) round(x) # compare with the above
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.