ck_generate_rkeys {cellKey} | R Documentation |
Generate random record keys
Description
This function allows to create random record keys from a uniform distribution. If no seed is specified, a seed value is computed from the input data set to allow for reproducability depending on the input data set.
Usage
ck_generate_rkeys(dat, nr_digits = 8, seed = NULL)
Arguments
dat |
microdata used to generated hash for random seed |
nr_digits |
maximum number of digits in the record keys. The default setting ( |
seed |
if not |
Value
a numeric vector with nrow(dat)
record keys
Examples
dat <- ck_create_testdata()
dat$rkeys <- ck_generate_rkeys(dat = ck_create_testdata(), nr_digits = 8)
[Package cellKey version 1.0.2 Index]