powered by
The subsampling is iteratively performed in order to generate multiple subsamples of a predetermined size.
subsample(n, size = n%/%2, n_subsample)
original sample size
subsample size
total number of subsamples
a matrix of indices with size rows and n_subsample columns.
size
n_subsample
# NOT RUN { n <- 50 # Total number of samples n_subsample <- 10 # Number of subsamples sub_matrix <- subsample(n = n, n_subsample = n_subsample) # }
Run the code above in your browser using DataLab