resample_uniform
draws a random (sub)sample (with or without
replacement) from the samples in data
.
resample_uniform(data, param = list(n = Inf, replace = FALSE))
a data.frame
containing a subset of the rows of data
.
If param$replace=FALSE
, a subsample of size
min(param$n,nrow(data))
will be drawn from data
. If
param$replace=TRUE
, the size of the subsample is param$n
.