Description Usage Arguments Author(s) Examples
Random identifiers. By default this uses the openssl
package to produce a random set of bytes, and expresses that as a
hex character string. This does not affect R's random number
stream.
1 |
n |
number of ids to return. If |
bytes |
The number of bytes to include for each identifier. The length of the returned identifiers will be twice this long with each pair of characters representing a single byte. |
use_openssl |
A logical, indicating if we should use the
openssl for generating the random identifiers. The openssl
random bytestream is not affected by the state of the R random
number generator (e.g., via |
Rich FitzJohn
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Generate a random id:
random_id()
# Generate 10 of them!
random_id(10)
# Different length ids
random_id(bytes = 8)
# (note that the number of characters is twice the number of bytes)
# The ids are not affected by R's RNG state:
set.seed(1)
(id1 <- random_id())
set.seed(1)
(id2 <- random_id())
# The generated identifiers are different, despite the seed being the same:
id1 == id2
# If you need these identifiers to be reproducible, pass use_openssl = FALSE
set.seed(1)
(id1 <- random_id(use_openssl = FALSE))
set.seed(1)
(id2 <- random_id(use_openssl = FALSE))
# This time they are the same:
id1 == id2
# Pass \code{n = NULL} to generate a function that binds your arguments:
id8 <- random_id(NULL, bytes = 8)
id8(10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.