rr3 | R Documentation |
Apply the 'Random Round to Base 3' (RR3)
algorithm to a vector of integers
(or doubles where round(x) == x
.
rr3(x)
x |
A vector of integers (in the
sense that |
The RR3 algorithm is used by statistical
agencies to confidentialize data. Under the
RR3 algorithm, an integer n
is randomly rounded as follows:
If n
is divisible by 3, leave it unchanged
If dividing n
by 3 leaves a remainder of 1, then
round down (subtract 1) with probability 2/3,
and round up (add 2) with probability 1/3.
If dividing n
by 3 leaves a remainder of 1,
then round down (subtract 2)
with probability 1/3, and round up (add 1)
with probability 2/3.
RR3 has some nice properties:
The randomly-rounded version of n
has expected value n
.
If n
non-negative, then the randomly
rounded version of n
is non-negative.
If n
is non-positive, then the randomly
rounded version of n
is non-positive.
A randomly-rounded version of x
.
x <- c(1, 5, 2, 0, -1, 3, NA)
rr3(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.